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

@@ -12,6 +12,6 @@ data "aws_iam_policy_document" "eks_fargate_pod_assume_role" {
}
data "aws_iam_role" "custom_fargate_iam_role" {
count = local.create_eks && ! var.create_fargate_pod_execution_role ? 1 : 0
count = local.create_eks && !var.create_fargate_pod_execution_role ? 1 : 0
name = var.fargate_pod_execution_role_name
}