Skip to content

Commit dbea003

Browse files
committed
make gen
1 parent c821ddb commit dbea003

18 files changed

+100
-0
lines changed

cli/testdata/coder_server_--help.golden

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,9 @@ OPTIONS:
4444
Separate multiple experiments with commas, or enter '*' to opt-in to
4545
all available experiments.
4646

47+
--postgres-auth password|awsrdsiam, $CODER_PG_AUTH (default: password)
48+
Type of auth to use when connecting to postgres.
49+
4750
--postgres-url string, $CODER_PG_CONNECTION_URL
4851
URL of a PostgreSQL database. If empty, PostgreSQL binaries will be
4952
downloaded from Maven (https://repo1.maven.org/maven2) and store all

cli/testdata/coder_server_create-admin-user_--help.golden

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ USAGE:
77
it to every organization.
88

99
OPTIONS:
10+
--postgres-connection-auth password|awsrdsiam, $CODER_PG_CONNECTION_AUTH (default: password)
11+
Type of auth to use when connecting to postgres.
12+
1013
--email string, $CODER_EMAIL
1114
The email of the new user. If not specified, you will be prompted via
1215
stdin.

cli/testdata/server-config.yaml.golden

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -402,6 +402,18 @@ cacheDir: [cache dir]
402402
# Controls whether data will be stored in an in-memory database.
403403
# (default: <unset>, type: bool)
404404
inMemoryDatabase: false
405+
# URL of a PostgreSQL database. If empty, PostgreSQL binaries will be downloaded
406+
# from Maven (https://repo1.maven.org/maven2) and store all data in the config
407+
# root. Access the built-in database with "coder server postgres-builtin-url".
408+
# (default: <unset>, type: string)
409+
pgConnectionURL: ""
410+
# Type of auth to use when connecting to postgres.
411+
# (default: password, type: enum[password\|awsrdsiam])
412+
pgAuth:
413+
choices:
414+
- password
415+
- awsrdsiam
416+
value: password
405417
# The algorithm to use for generating ssh keys. Accepted values are "ed25519",
406418
# "ecdsa", or "rsa4096".
407419
# (default: ed25519, type: string)

coderd/apidoc/docs.go

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

coderd/apidoc/swagger.json

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/api/general.md

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/api/schemas.md

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/cli/server.md

Lines changed: 12 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/cli/server_create-admin-user.md

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/cli/server_dbcrypt_decrypt.md

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)