File tree Expand file tree Collapse file tree 5 files changed +12
-0
lines changed Expand file tree Collapse file tree 5 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -124,6 +124,7 @@ This software is released under the MIT License (see `LICENSE`).
124124| lb\_ dns\_ aliases | List of DNS aliases add for ALB |
125125| lb\_ dns\_ name | FQDN of ALB provisioned for service (if present) |
126126| lb\_ zone\_ id | Route 53 zone ID of ALB provisioned for service (if present) |
127+ | log\_ group\_ name | Cloudwatch log group name for service |
127128| service\_ arn | ECS service ARN |
128129| service\_ iam\_ role\_ arn | ARN of the IAM Role for the ECS Service |
129130| service\_ iam\_ role\_ name | Name of the IAM Role for the ECS Task |
Original file line number Diff line number Diff line change @@ -31,6 +31,7 @@ Note that this example may create resources which cost money. Run `terraform des
3131| ------| -------------|
3232| cluster\_ arn | ECS cluster ARN |
3333| container\_ json | |
34+ | log\_ group\_ name | Cloudwatch log group name for service |
3435| service\_ arn | ECS service ARN |
3536| service\_ iam\_ role\_ arn | ARN of the IAM Role for the ECS Service |
3637| service\_ iam\_ role\_ name | Name of the IAM Role for the ECS Task |
Original file line number Diff line number Diff line change 1+ output "log_group_name" {
2+ description = " Cloudwatch log group name for service"
3+ value = " ${ module . no_lb . log_group_name } "
4+ }
5+
16output "task_iam_role_arn" {
27 description = " ARN of the IAM Role for the ECS Task"
38 value = " ${ module . no_lb . task_iam_role_arn } "
Original file line number Diff line number Diff line change @@ -13,6 +13,11 @@ output "lb_zone_id" {
1313 value = " ${ module . lb . zone_id } "
1414}
1515
16+ output "log_group_name" {
17+ description = " Cloudwatch log group name for service"
18+ value = " ${ local . log_group_name } "
19+ }
20+
1621output "task_iam_role_arn" {
1722 description = " ARN of the IAM Role for the ECS Task"
1823 value = " ${ element (concat (aws_iam_role. task . * . arn , list (" " )), 0 )} "
You can’t perform that action at this time.
0 commit comments