Skip to content

Commit

Permalink
Adding internal alb sg output (#62)
Browse files Browse the repository at this point in the history
* Adding internal alb sg output

* terraform-docs: automated update action

---------

Co-authored-by: adenot <[email protected]>
  • Loading branch information
adenot and adenot authored Oct 23, 2024
1 parent 1a60cfa commit 94db318
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,7 @@ module "ecs_apps" {
| alb\_internal\_id | n/a |
| alb\_internal\_listener\_https\_arn | n/a |
| alb\_internal\_listener\_test\_traffic\_arn | n/a |
| alb\_internal\_secgrp\_id | n/a |
| alb\_internal\_zone\_id | n/a |
| alb\_listener\_https\_arn | n/a |
| alb\_listener\_test\_traffic\_arn | n/a |
Expand Down
4 changes: 4 additions & 0 deletions _outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,10 @@ output "alb_secgrp_id" {
value = aws_security_group.alb.*.id
}

output "alb_internal_secgrp_id" {
value = try(aws_security_group.alb_internal[0].id, "")
}

output "efs_fs_id" {
value = try(aws_efs_file_system.ecs[0].id, "")
}
Expand Down

0 comments on commit 94db318

Please sign in to comment.