File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ module "cluster" {
6666 root_device_encrypted = local. cfg [" worker_root_device_encrypted" ]
6767 root_device_volume_size = local. cfg [" worker_root_device_volume_size" ]
6868
69- additional_node_tags = local. cfg [" cluster_additional_node_tags" ]
69+ additional_node_tags = local. cfg [" cluster_additional_node_tags" ] != null ? local . cfg [ " cluster_additional_node_tags " ] : {}
7070
7171 aws_auth_map_roles = local. cfg [" cluster_aws_auth_map_roles" ] != null ? local. cfg [" cluster_aws_auth_map_roles" ] : " "
7272 aws_auth_map_users = local. cfg [" cluster_aws_auth_map_users" ] != null ? local. cfg [" cluster_aws_auth_map_users" ] : " "
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ variable "configuration" {
88 cluster_min_size = optional (string )
99
1010 # Optional attributes with defaults
11- cluster_availability_zones = optional (list (string ), [] )
11+ cluster_availability_zones = optional (list (string ))
1212
1313 cluster_vpc_cidr = optional (string )
1414 cluster_vpc_subnet_newbits = optional (string )
@@ -29,7 +29,7 @@ variable "configuration" {
2929 metadata_options_http_protocol_ipv6 = optional (string )
3030 metadata_options_instance_metadata_tags = optional (string )
3131
32- cluster_additional_node_tags = optional (map (string ), {} )
32+ cluster_additional_node_tags = optional (map (string ))
3333
3434 cluster_version = optional (string )
3535
You can’t perform that action at this time.
0 commit comments