Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 47c4317

Browse files
committed
make gen
1 parent 55c81d6 commit 47c4317

18 files changed

+137
-24
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
@@ -411,6 +411,18 @@ cacheDir: [cache dir]
411411
# Controls whether data will be stored in an in-memory database.
412412
# (default: <unset>, type: bool)
413413
inMemoryDatabase: false
414+
# URL of a PostgreSQL database. If empty, PostgreSQL binaries will be downloaded
415+
# from Maven (https://repo1.maven.org/maven2) and store all data in the config
416+
# root. Access the built-in database with "coder server postgres-builtin-url".
417+
# (default: <unset>, type: string)
418+
pgConnectionURL: ""
419+
# Type of auth to use when connecting to postgres.
420+
# (default: password, type: enum[password\|awsrdsiam])
421+
pgAuth:
422+
choices:
423+
- password
424+
- awsrdsiam
425+
value: password
414426
# The algorithm to use for generating ssh keys. Accepted values are "ed25519",
415427
# "ecdsa", or "rsa4096".
416428
# (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: 14 additions & 24 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: 31 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: 22 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_delete.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_rotate.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.

enterprise/cli/testdata/coder_server_--help.golden

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

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

enterprise/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.

enterprise/cli/testdata/coder_server_dbcrypt_decrypt_--help.golden

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ USAGE:
66
Decrypt a previously encrypted database.
77

88
OPTIONS:
9+
--postgres-connection-auth password|awsrdsiam, $CODER_PG_CONNECTION_AUTH (default: password)
10+
Type of auth to use when connecting to postgres.
11+
912
--keys string-array, $CODER_EXTERNAL_TOKEN_ENCRYPTION_DECRYPT_KEYS
1013
Keys required to decrypt existing data. Must be a comma-separated list
1114
of base64-encoded keys.

enterprise/cli/testdata/coder_server_dbcrypt_delete_--help.golden

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ USAGE:
88
Aliases: rm
99

1010
OPTIONS:
11+
--postgres-connection-auth password|awsrdsiam, $CODER_PG_CONNECTION_AUTH (default: password)
12+
Type of auth to use when connecting to postgres.
13+
1114
--postgres-url string, $CODER_EXTERNAL_TOKEN_ENCRYPTION_POSTGRES_URL
1215
The connection URL for the Postgres database.
1316

enterprise/cli/testdata/coder_server_dbcrypt_rotate_--help.golden

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ USAGE:
66
Rotate database encryption keys.
77

88
OPTIONS:
9+
--postgres-connection-auth password|awsrdsiam, $CODER_PG_CONNECTION_AUTH (default: password)
10+
Type of auth to use when connecting to postgres.
11+
912
--new-key string, $CODER_EXTERNAL_TOKEN_ENCRYPTION_ENCRYPT_NEW_KEY
1013
The new external token encryption key. Must be base64-encoded.
1114

site/src/api/typesGenerated.ts

Lines changed: 5 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)