Skip to content

Commit

Permalink
Merge pull request #345 from kgieseking/default-instance-tags
Browse files Browse the repository at this point in the history
Fix logic for empty node pool instance tags
  • Loading branch information
pst authored Dec 9, 2024
2 parents 278e2f4 + 5436bae commit 81a7b1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion google/cluster/node-pool/configuration.tf
Original file line number Diff line number Diff line change
Expand Up @@ -45,5 +45,5 @@ locals {
guest_accelerator = local.cfg["guest_accelerator"]
network_config = local.cfg["network_config"]

instance_tags = local.cfg["instance_tags"]
instance_tags = local.cfg["instance_tags"] != null ? local.cfg["instance_tags"] : []
}

0 comments on commit 81a7b1e

Please sign in to comment.