Skip to content

Commit 94db318

Browse files
authored
Adding internal alb sg output (#62)
* Adding internal alb sg output * terraform-docs: automated update action --------- Co-authored-by: adenot <[email protected]>
1 parent 1a60cfa commit 94db318

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,7 @@ module "ecs_apps" {
145145
| alb\_internal\_id | n/a |
146146
| alb\_internal\_listener\_https\_arn | n/a |
147147
| alb\_internal\_listener\_test\_traffic\_arn | n/a |
148+
| alb\_internal\_secgrp\_id | n/a |
148149
| alb\_internal\_zone\_id | n/a |
149150
| alb\_listener\_https\_arn | n/a |
150151
| alb\_listener\_test\_traffic\_arn | n/a |

_outputs.tf

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,10 @@ output "alb_secgrp_id" {
9494
value = aws_security_group.alb.*.id
9595
}
9696

97+
output "alb_internal_secgrp_id" {
98+
value = try(aws_security_group.alb_internal[0].id, "")
99+
}
100+
97101
output "efs_fs_id" {
98102
value = try(aws_efs_file_system.ecs[0].id, "")
99103
}

0 commit comments

Comments
 (0)