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 d252579 commit 2893174Copy full SHA for 2893174
modules/beta-private-cluster-update-variant/cluster.tf
@@ -307,7 +307,7 @@ resource "google_container_cluster" "primary" {
307
}
308
309
dynamic "dns_config" {
310
- for_each = var.cluster_dns_provider == "CLOUD_DNS" ? [1] : []
+ for_each = var.cluster_dns_provider != "PROVIDER_UNSPECIFIED" ? [1] : []
311
content {
312
cluster_dns = var.cluster_dns_provider
313
cluster_dns_scope = var.cluster_dns_scope
0 commit comments