From d81a10334ff26af8410b2e76fbf1e4a462b2481b Mon Sep 17 00:00:00 2001 From: gabriel esposito Date: Wed, 3 Jul 2019 16:27:01 -0400 Subject: [PATCH] +fixs syntax issue on Terraform v0.12.2 --- main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.tf b/main.tf index 285ca8e..27e4aaf 100644 --- a/main.tf +++ b/main.tf @@ -32,7 +32,7 @@ resource "aws_iam_role" "scheduled_task_cloudwatch" { data "template_file" "scheduled_task_cloudwatch_policy" { template = "${file("${path.module}/policies/scheduled-task-cloudwatch-policy.json")}" - vars { + vars = { task_execution_role_arn = "${aws_iam_role.scheduled_task_ecs_execution.arn}" } }