File tree Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -37,3 +37,23 @@ output "log_group_name" {
3737 description = " The name of the Cloudwatch log group for the task."
3838 value = aws_cloudwatch_log_group. main . name
3939}
40+
41+ output "execution_role_arn" {
42+ description = " The Amazon Resource Name (ARN) specifying the ECS execution role."
43+ value = aws_iam_role. execution . arn
44+ }
45+
46+ output "execution_role_name" {
47+ description = " The name of the ECS execution role."
48+ value = aws_iam_role. execution . name
49+ }
50+
51+ output "task_definition_arn" {
52+ description = " The Amazon Resource Name (ARN) of the task definition created"
53+ value = aws_ecs_task_definition. task . arn
54+ }
55+
56+ output "task_definition_name" {
57+ description = " The name of the task definition created"
58+ value = aws_ecs_task_definition. task . arn
59+ }
You can’t perform that action at this time.
0 commit comments