chore: Fix terraform format for TF 0.14 (#1157)

This commit is contained in:
Thierno IB. BARRY
2020-12-22 11:32:13 +01:00
committed by GitHub
parent 942a88e18f
commit ea2f6982d5
4 changed files with 11 additions and 11 deletions

View File

@@ -133,7 +133,7 @@ resource "aws_autoscaling_group" "workers" {
"value", tag_value,
"propagate_at_launch", "true"
)
if tag_key != "Name" && ! contains([for tag in lookup(var.worker_groups[count.index], "tags", local.workers_group_defaults["tags"]) : tag["key"]], tag_key)
if tag_key != "Name" && !contains([for tag in lookup(var.worker_groups[count.index], "tags", local.workers_group_defaults["tags"]) : tag["key"]], tag_key)
],
lookup(
var.worker_groups[count.index],
@@ -194,7 +194,7 @@ resource "aws_launch_configuration" "workers" {
ebs_optimized = lookup(
var.worker_groups[count.index],
"ebs_optimized",
! contains(
!contains(
local.ebs_optimized_not_supported,
lookup(
var.worker_groups[count.index],