Skip to content

Commit

Permalink
fix defined_tags for cluster_autoscaler managed node_pools
Browse files Browse the repository at this point in the history
  • Loading branch information
robo-cap authored and devoncrouse committed Aug 31, 2023
1 parent 3b4877d commit d8ae0d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/workers/locals.tf
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ locals {
"${var.tag_namespace}.pool" = pool_name,
"${var.tag_namespace}.cluster_autoscaler" = pool.allow_autoscaler ? "allowed" : "disabled",
},
pool.autoscale ? { "${var.tag_namespace}.oraclecloud.com/cluster_autoscaler" = "managed" } : {},
pool.autoscale ? { "${var.tag_namespace}.cluster_autoscaler" = "managed" } : {},
) : {},
var.defined_tags,
lookup(pool, "defined_tags", {})
Expand Down

0 comments on commit d8ae0d4

Please sign in to comment.