Skip to content

Commit

Permalink
fix: Get on_demand_allocation_strategy from `local.workers_group_de…
Browse files Browse the repository at this point in the history
…faults` when deciding to use `mixed_instances_policy` (#908)
  • Loading branch information
trnubo authored Jun 24, 2020
1 parent 348f441 commit c4edc6f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions workers_launch_template.tf
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ resource "aws_autoscaling_group" "workers_launch_template" {

dynamic mixed_instances_policy {
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", null) != 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) ? list(var.worker_groups_launch_template[count.index]) : []

content {
instances_distribution {
Expand Down Expand Up @@ -153,7 +153,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", null) != 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) ? [] : list(var.worker_groups_launch_template[count.index])

content {
id = aws_launch_template.workers_launch_template.*.id[count.index]
Expand Down

0 comments on commit c4edc6f

Please sign in to comment.