@@ -57,10 +57,10 @@ locals {
57
57
enable_private_nodes = lookup (local. cfg , " enable_private_nodes" , true )
58
58
master_cidr_block = lookup (local. cfg , " master_cidr_block" , " 172.16.0.32/28" )
59
59
60
- cluster_ipv4_cidr_block = lookup (local. cfg , " cluster_ipv4_cidr_block" , null )
60
+ cluster_ipv4_cidr_block = lookup (local. cfg , " cluster_ipv4_cidr_block" , null )
61
61
services_ipv4_cidr_block = lookup (local. cfg , " services_ipv4_cidr_block" , null )
62
62
63
- cluster_database_encryption_key_name = lookup (local. cfg , " cluster_database_encryption_key_name" , false )
63
+ cluster_database_encryption_key_name = lookup (local. cfg , " cluster_database_encryption_key_name" , null )
64
64
65
65
# by default include cloud_nat when private nodes are enabled
66
66
enable_cloud_nat = lookup (local. cfg , " enable_cloud_nat" , local. enable_private_nodes )
@@ -75,6 +75,6 @@ locals {
75
75
master_authorized_networks_config_cidr_blocks_lookup = lookup (local. cfg , " master_authorized_networks_config_cidr_blocks" , null )
76
76
master_authorized_networks_config_cidr_blocks = local. master_authorized_networks_config_cidr_blocks_lookup == null ? null : split (" ," , local. master_authorized_networks_config_cidr_blocks_lookup )
77
77
78
- enable_intranode_visibility = lookup (local. cfg , " enable_intranode_visibility" , false )
78
+ enable_intranode_visibility = lookup (local. cfg , " enable_intranode_visibility" , false )
79
79
enable_tpu = lookup (local. cfg , " enable_tpu" , false )
80
80
}
0 commit comments