From bc7c9f1fe4390d651d25e4441cff4feb25f5fac2 Mon Sep 17 00:00:00 2001 From: Chris Wright Date: Thu, 6 May 2021 15:59:00 +0100 Subject: [PATCH] Terraform 0.13.* updates * fixes interpolation warnings --- main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.tf b/main.tf index 2dc61c6..d3eccb2 100644 --- a/main.tf +++ b/main.tf @@ -30,7 +30,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")}" + template = file("${path.module}/policies/scheduled-task-cloudwatch-policy.json") vars = { task_execution_role_arn = aws_iam_role.scheduled_task_ecs_execution.arn