We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c7ee27 commit 5f01353Copy full SHA for 5f01353
sql/gcp-sql/main.tf
@@ -119,6 +119,12 @@ resource "google_sql_database" "sql_database" {
119
instance = var.sql_type == "postgresql" ? google_sql_database_instance.postgres_sql_db[0].name : google_sql_database_instance.sql_db[0].name
120
charset = "UTF8"
121
collation = var.db_collation
122
+ lifecycle {
123
+ ignore_changes = [
124
+ charset,
125
+ collation,
126
+ ]
127
+ }
128
}
129
130
resource "google_sql_user" "sql_user" {
0 commit comments