Skip to content

Commit

Permalink
Add outputs for task execution role (#52)
Browse files Browse the repository at this point in the history
* Add outputs for task execution role
  • Loading branch information
feraudet authored May 25, 2021
1 parent ab479e2 commit 5fa8e0d
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,16 @@ output "task_role_name" {
value = aws_iam_role.task.name
}

output "task_execution_role_arn" {
description = "The Amazon Resource Name (ARN) specifying the execution service role."
value = aws_iam_role.execution.arn
}

output "task_execution_role_name" {
description = "The name of the execution service role."
value = aws_iam_role.execution.name
}

output "service_sg_id" {
description = "The Amazon Resource Name (ARN) that identifies the service security group."
value = aws_security_group.ecs_service.id
Expand Down

0 comments on commit 5fa8e0d

Please sign in to comment.