Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: Correction for google_sql_database_instance database_flags #10728

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ resource "google_sql_database_instance" "main" {
tier = "db-f1-micro"

database_flags {
name = "cloudsql.iam_authentication"
name = "cloudsql_iam_authentication"
value = "on"
}
}
Expand Down Expand Up @@ -89,7 +89,7 @@ resource "google_sql_database_instance" "main" {
tier = "db-f1-micro"

database_flags {
name = "cloudsql.iam_authentication"
name = "cloudsql_iam_authentication"
value = "on"
}
}
Expand Down Expand Up @@ -124,7 +124,7 @@ The following arguments are supported:
* `deletion_policy` - (Optional) The deletion policy for the user.
Setting `ABANDON` allows the resource to be abandoned rather than deleted. This is useful
for Postgres, where users cannot be deleted from the API if they have been granted SQL roles.

Possible values are: `ABANDON`.

- - -
Expand Down
Loading