removed extra lines

This commit is contained in:
caiotavaresdito
2021-11-30 07:50:53 -05:00
parent 5a9183d908
commit fd4383540a
2 changed files with 2 additions and 2 deletions

View File

@@ -279,7 +279,6 @@ resource "google_container_cluster" "cluster" {
}
dynamic "notification_config" {
for_each = var.notification_config != null ? [""] : []
content {
pubsub {
@@ -288,7 +287,6 @@ resource "google_container_cluster" "cluster" {
}
}
}
}
resource "google_compute_network_peering_routes_config" "gke_master" {

View File

@@ -236,11 +236,13 @@ variable "node_locations" {
type = list(string)
default = []
}
variable "notification_config" {
description = "GKE Cluster upgrade notifications via PubSub."
type = bool
default = false
}
variable "peering_config" {
description = "Configure peering with the master VPC for private clusters."
type = object({