From 3cd9c241f92c79859adfcebe49b2f841a7ece00b Mon Sep 17 00:00:00 2001 From: Dan Heath <76443935+Dan-Heath@users.noreply.github.com> Date: Wed, 11 Oct 2023 15:12:08 -0400 Subject: [PATCH] docs: Update worker auth storage path (#3759) --- website/content/docs/configuration/worker/pki-worker.mdx | 6 +++--- .../content/docs/install-boundary/configure-workers.mdx | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/website/content/docs/configuration/worker/pki-worker.mdx b/website/content/docs/configuration/worker/pki-worker.mdx index e4912f7994..933e1cbe47 100644 --- a/website/content/docs/configuration/worker/pki-worker.mdx +++ b/website/content/docs/configuration/worker/pki-worker.mdx @@ -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" } diff --git a/website/content/docs/install-boundary/configure-workers.mdx b/website/content/docs/install-boundary/configure-workers.mdx index 5e521fd57b..8cb634ef14 100644 --- a/website/content/docs/install-boundary/configure-workers.mdx +++ b/website/content/docs/install-boundary/configure-workers.mdx @@ -98,7 +98,7 @@ listener "tcp" { worker { public_addr = "" initial_upstreams = [":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 = "" initial_upstreams = [":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 = "" initial_upstreams = [":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 = "" initial_upstreams = [":9201"] - auth_storage_path = "/etc/boundary.d/auth_storage/" + auth_storage_path = "/var/lib/boundary" tags { type = ["worker", "egress"] }