Skip to content

Commit

Permalink
Terraform 0.13.* updates
Browse files Browse the repository at this point in the history
* fixes interpolation warnings
  • Loading branch information
Stretch96 committed May 6, 2021
1 parent 6d18cc6 commit bc7c9f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit bc7c9f1

Please sign in to comment.