docs: Update worker auth storage path (#3759)

jimlambrt-go-version
Dan Heath 3 years ago committed by GitHub
parent d42369551a
commit 3cd9c241f9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -15,7 +15,7 @@ Example (not safe for production!):
```hcl
worker {
auth_storage_path="/boundary/demo-worker-1"
auth_storage_path="/var/lib/boundary"
initial_upstreams = ["10.0.0.1"]
}
```
@ -34,7 +34,7 @@ either directly or via an env var or file by using `env://` or `file://` syntax:
```hcl
worker {
auth_storage_path="/boundary/demo-worker-1"
auth_storage_path="/var/lib/boundary"
initial_upstreams = ["10.0.0.1"]
controller_generated_activation_token = "neslat_........."
# controller_generated_activation_token = "env://ACT_TOKEN"
@ -88,7 +88,7 @@ Development example:
```hcl
worker {
auth_storage_path="/boundary/demo-worker-1"
auth_storage_path="/var/lib/boundary"
initial_upstreams = ["10.0.0.1"]
recording_storage_path="/local/storage/directory"
}

@ -98,7 +98,7 @@ listener "tcp" {
worker {
public_addr = "<worker_public_addr>"
initial_upstreams = ["<controller_lb_address>:9201"]
auth_storage_path = "/etc/boundary.d/auth_storage/"
auth_storage_path = "/var/lib/boundary"
tags {
type = ["worker1", "upstream"]
}
@ -167,7 +167,7 @@ listener "tcp" {
worker {
public_addr = "<worker_public_addr>"
initial_upstreams = ["<ingress_worker_address>:9202"]
auth_storage_path = "/etc/boundary.d/auth_storage/"
auth_storage_path = "/var/lib/boundary"
tags {
type = ["worker2", "intermediate"]
}
@ -236,7 +236,7 @@ listener "tcp" {
worker {
public_addr = "<worker_public_addr>"
initial_upstreams = ["<intermediate_worker_address>:9202"]
auth_storage_path = "/etc/boundary.d/auth_storage/"
auth_storage_path = "/var/lib/boundary"
tags {
type = ["worker3", "egress"]
}
@ -350,7 +350,7 @@ listener "tcp" {
worker {
public_addr = "<worker_public_addr>"
initial_upstreams = ["<controller_lb_address>:9201"]
auth_storage_path = "/etc/boundary.d/auth_storage/"
auth_storage_path = "/var/lib/boundary"
tags {
type = ["worker", "egress"]
}

Loading…
Cancel
Save