Skip to content

Commit

Permalink
[CC-1769] - Make dbname for postgres, redshift a required field due t…
Browse files Browse the repository at this point in the history
…o api updates
  • Loading branch information
sidpatel13 committed Sep 12, 2024
1 parent d64edae commit 0a6933a
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -554,6 +554,7 @@ resource dbtcloud_global_connection test {
redshift = {
hostname = "test.com"
port = 9876
dbname = "my_database"
}
}
Expand All @@ -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"
Expand Down Expand Up @@ -694,6 +695,7 @@ resource dbtcloud_global_connection test {
postgres = {
hostname = "test.com"
port = 9876
dbname = "my_database"
}
}
Expand All @@ -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"
Expand Down

0 comments on commit 0a6933a

Please sign in to comment.