From 0a6933ad7ae9f65a89079216ab26763b5ff807fd Mon Sep 17 00:00:00 2001 From: Sid Patel Date: Thu, 12 Sep 2024 15:06:02 -0500 Subject: [PATCH] [CC-1769] - Make dbname for postgres, redshift a required field due to api updates --- .../objects/global_connection/resource_acceptance_test.go | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkg/framework/objects/global_connection/resource_acceptance_test.go b/pkg/framework/objects/global_connection/resource_acceptance_test.go index 2c0d25a..0a8a347 100644 --- a/pkg/framework/objects/global_connection/resource_acceptance_test.go +++ b/pkg/framework/objects/global_connection/resource_acceptance_test.go @@ -554,6 +554,7 @@ resource dbtcloud_global_connection test { redshift = { hostname = "test.com" port = 9876 + dbname = "my_database" } } @@ -570,9 +571,9 @@ resource dbtcloud_global_connection test { redshift = { hostname = "test.com" port = 1234 + dbname = "my_database" // optional fields - dbname = "my_database" ssh_tunnel = { username = "user" hostname = "host2" @@ -694,6 +695,7 @@ resource dbtcloud_global_connection test { postgres = { hostname = "test.com" port = 9876 + dbname = "my_database" } } @@ -710,9 +712,9 @@ resource dbtcloud_global_connection test { postgres = { hostname = "test.com" port = 1234 + dbname = "my_database" // optional fields - dbname = "my_database" ssh_tunnel = { username = "user" hostname = "host2"