Skip to content

Commit

Permalink
fix: Fixed list and map usage (#1307)
Browse files Browse the repository at this point in the history
  • Loading branch information
antonbabenko authored Apr 16, 2021
1 parent eafc458 commit ffdc7a7
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions workers_launch_template.tf
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ resource "aws_autoscaling_group" "workers_launch_template" {

dynamic "launch_template" {
iterator = item
for_each = (lookup(var.worker_groups_launch_template[count.index], "override_instance_types", null) != null) || (lookup(var.worker_groups_launch_template[count.index], "on_demand_allocation_strategy", local.workers_group_defaults["on_demand_allocation_strategy"]) != null) ? [] : list(var.worker_groups_launch_template[count.index])
for_each = (lookup(var.worker_groups_launch_template[count.index], "override_instance_types", null) != null) || (lookup(var.worker_groups_launch_template[count.index], "on_demand_allocation_strategy", local.workers_group_defaults["on_demand_allocation_strategy"]) != null) ? [] : [var.worker_groups_launch_template[count.index]]

content {
id = aws_launch_template.workers_launch_template.*.id[count.index]
Expand Down Expand Up @@ -209,11 +209,11 @@ resource "aws_autoscaling_group" "workers_launch_template" {
],
[
for tag_key, tag_value in var.tags :
map(
"key", tag_key,
"value", tag_value,
"propagate_at_launch", "true"
)
tomap({
key = tag_key
value = tag_value
propagate_at_launch = "true"
})
if tag_key != "Name" && !contains([for tag in lookup(var.worker_groups_launch_template[count.index], "tags", local.workers_group_defaults["tags"]) : tag["key"]], tag_key)
],
lookup(
Expand Down

0 comments on commit ffdc7a7

Please sign in to comment.