Skip to content

Commit

Permalink
Add outputs for the task execution role name and arn
Browse files Browse the repository at this point in the history
  • Loading branch information
keirbadger committed May 13, 2019
1 parent d0dc4b4 commit a88e701
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,11 @@ output "task_role_arn" {
output "task_role_name" {
value = "${aws_iam_role.task_role.name}"
}

output "task_execution_role_arn" {
value = "${aws_iam_role.ecs_tasks_execution_role.arn}"
}

output "task_execution_role_name" {
value = "${aws_iam_role.ecs_tasks_execution_role.name}"
}

0 comments on commit a88e701

Please sign in to comment.