You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
Description:"Path to a file containing the URL of a PostgreSQL database. The file contents will be read and used as the connection URL. This is an alternative to --postgres-url for cases where the URL is stored in a file, such as a Docker or Kubernetes secret.",
125
+
Env:"CODER_PG_CONNECTION_URL_FILE",
126
+
Value:serpent.StringOf(&postgresURLFile),
127
+
},
109
128
serpent.Option{
110
129
Name:"Postgres Connection Auth",
111
130
Description:"Type of auth to use when connecting to postgres.",
Description:"URL of a PostgreSQL database. If empty, the built-in PostgreSQL deployment will be used (Coder must not be already running in this case).",
258
271
Value:serpent.StringOf(&newUserDBURL),
259
272
},
273
+
serpent.Option{
274
+
Env:"CODER_PG_CONNECTION_URL_FILE",
275
+
Flag:"postgres-url-file",
276
+
Description:"Path to a file containing the URL of a PostgreSQL database. The file contents will be read and used as the connection URL. This is an alternative to --postgres-url for cases where the URL is stored in a file, such as a Docker or Kubernetes secret.",
277
+
Value:serpent.StringOf(&newUserDBURLFile),
278
+
},
260
279
serpent.Option{
261
280
Name:"Postgres Connection Auth",
262
281
Description:"Type of auth to use when connecting to postgres.",
Description:"URL of a PostgreSQL database. If empty, the built-in PostgreSQL deployment will be used (Coder must not be already running in this case).",
99
112
Value:serpent.StringOf(®enVapidKeypairDBURL),
100
113
},
114
+
serpent.Option{
115
+
Env:"CODER_PG_CONNECTION_URL_FILE",
116
+
Flag:"postgres-url-file",
117
+
Description:"Path to a file containing the URL of a PostgreSQL database. The file contents will be read and used as the connection URL. This is an alternative to --postgres-url for cases where the URL is stored in a file, such as a Docker or Kubernetes secret.",
Description:"Path to a file containing the URL of a PostgreSQL database. The file contents will be read and used as the connection URL. This is an alternative to --postgres-url for cases where the URL is stored in a file, such as a Docker or Kubernetes secret.",
2556
+
Flag:"postgres-url-file",
2557
+
Env:"CODER_PG_CONNECTION_URL_FILE",
2558
+
Value:&c.PostgresURLFile,
2559
+
},
2552
2560
{
2553
2561
Name:"Postgres Auth",
2554
2562
Description:"Type of auth to use when connecting to postgres. For AWS RDS, using IAM authentication (awsiamrds) is recommended.",