Skip to content

Commit 3d23898

Browse files
committed
Fix terraform fmt
1 parent dd81751 commit 3d23898

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ locals {
8383

8484

8585
master_authorized_networks_config = length(var.master_authorized_networks) == 0 ? [] : [{
86-
cidr_blocks: var.master_authorized_networks
86+
cidr_blocks : var.master_authorized_networks
8787
}]
8888

8989
cluster_output_node_pools_names = concat(google_container_node_pool.pools.*.name, [""])

modules/private-cluster-update-variant/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ locals {
8383

8484

8585
master_authorized_networks_config = length(var.master_authorized_networks) == 0 ? [] : [{
86-
cidr_blocks: var.master_authorized_networks
86+
cidr_blocks : var.master_authorized_networks
8787
}]
8888

8989
cluster_output_node_pools_names = concat(google_container_node_pool.pools.*.name, [""])

modules/private-cluster/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ locals {
8383

8484

8585
master_authorized_networks_config = length(var.master_authorized_networks) == 0 ? [] : [{
86-
cidr_blocks: var.master_authorized_networks
86+
cidr_blocks : var.master_authorized_networks
8787
}]
8888

8989
cluster_output_node_pools_names = concat(google_container_node_pool.pools.*.name, [""])

0 commit comments

Comments
 (0)