Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

highlight that CONCOURSE_TSA_AUTHORIZED_KEYS is a public key #538

Merged
merged 2 commits into from
Jan 14, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lit/docs/install/generating-keys.lit
Original file line number Diff line number Diff line change
Expand Up @@ -78,11 +78,11 @@
keys. The \reference{concourse-web} needs to know about all of the public
worker keys. To pass all public worker keys to the \reference{concourse-web}
create a file that contains all of the worker public keys. A common name for
this file is \code{authorized_worker_keys}. The file should look like this,
this file is \code{authorized_worker_keys.pub}. The file should look like this,
with one public key per line.

\codeblock{bash}{{
$ cat authorized_worker_keys
$ cat authorized_worker_keys.pub
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCgKtVnbGRJ7Y63QKoO+loS...
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDU6lA4gSRYIc4MXzphJ2l5...
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDgNU7KBz/QQusPO52pNcea...
Expand Down
2 changes: 1 addition & 1 deletion lit/docs/install/web.lit
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ as performing all pipeline scheduling. It's basically the brain of Concourse.
\codeblock{bash}{{{
CONCOURSE_SESSION_SIGNING_KEY=path/to/session_signing_key
CONCOURSE_TSA_HOST_KEY=path/to/tsa_host_key
CONCOURSE_TSA_AUTHORIZED_KEYS=path/to/authorized_worker_keys
CONCOURSE_TSA_AUTHORIZED_KEYS=path/to/authorized_worker_keys.pub
}}}

Finally, \code{web} needs to know how to reach your Postgres database. This
Expand Down