From ce0c77c3597290773cddb8b5e864a43e70d5f61d Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 13 Mar 2025 15:52:35 +0000 Subject: [PATCH] fix: update test and golden files for Postgres Password secret --- cli/testdata/server-config.yaml.golden | 3 --- codersdk/deployment_test.go | 3 +++ 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cli/testdata/server-config.yaml.golden b/cli/testdata/server-config.yaml.golden index eb6dce991c..8f4bef987c 100644 --- a/cli/testdata/server-config.yaml.golden +++ b/cli/testdata/server-config.yaml.golden @@ -471,9 +471,6 @@ pgPort: "5432" # Username for PostgreSQL authentication. Only used if postgres-url is not set. # (default: , type: string) pgUsername: "" -# Password for PostgreSQL authentication. Only used if postgres-url is not set. -# (default: , type: string) -pgPassword: "" # Database name for PostgreSQL. Only used if postgres-url is not set. # (default: , type: string) pgDatabase: "" diff --git a/codersdk/deployment_test.go b/codersdk/deployment_test.go index 1d2af67659..cd9635039e 100644 --- a/codersdk/deployment_test.go +++ b/codersdk/deployment_test.go @@ -63,6 +63,9 @@ func TestDeploymentValues_HighlyConfigurable(t *testing.T) { "Postgres Connection URL": { yaml: true, }, + "Postgres Password": { + yaml: true, + }, "SCIM API Key": { yaml: true, },