Skip to content

Commit

Permalink
fix enum reference
Browse files Browse the repository at this point in the history
  • Loading branch information
mikealfare committed Apr 19, 2024
1 parent 75c9f85 commit 00ff2ae
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions dbt/adapters/redshift/connections.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,11 @@ class RedshiftSSLMode(StrEnum):

SSL_MODE_TRANSLATION = {
UserSSLMode.disable: None,
UserSSLMode.allow: RedshiftSSLMode("verify_ca"),
UserSSLMode.prefer: RedshiftSSLMode("verify_ca"),
UserSSLMode.require: RedshiftSSLMode("verify_ca"),
UserSSLMode.verify_ca: RedshiftSSLMode("verify_ca"),
UserSSLMode.verify_full: RedshiftSSLMode("verify_full"),
UserSSLMode.allow: RedshiftSSLMode("verify-ca"),
UserSSLMode.prefer: RedshiftSSLMode("verify-ca"),
UserSSLMode.require: RedshiftSSLMode("verify-ca"),
UserSSLMode.verify_ca: RedshiftSSLMode("verify-ca"),
UserSSLMode.verify_full: RedshiftSSLMode("verify-full"),
}


Expand Down

0 comments on commit 00ff2ae

Please sign in to comment.