Skip to content

Commit

Permalink
Terraform 0.13.* updates
Browse files Browse the repository at this point in the history
  • Loading branch information
Stretch96 committed May 6, 2021
1 parent bc7c9f1 commit 6368b48
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions outputs.tf
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
output "scheduled_task_ecs_execution_role_id" {
value = "${aws_iam_role.scheduled_task_ecs_execution.id}"
value = aws_iam_role.scheduled_task_ecs_execution.id
}

output "scheduled_task_ecs_role_id" {
value = "${aws_iam_role.scheduled_task_ecs.id}"
value = aws_iam_role.scheduled_task_ecs.id
}

output "scheduled_task_cloudwatch_role_id" {
value = "${aws_iam_role.scheduled_task_cloudwatch.id}"
value = aws_iam_role.scheduled_task_cloudwatch.id
}

output "scheduled_task_arn" {
value = "${aws_ecs_task_definition.scheduled_task.arn}"
value = aws_ecs_task_definition.scheduled_task.arn
}

0 comments on commit 6368b48

Please sign in to comment.