We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a60cfa commit 94db318Copy full SHA for 94db318
README.md
@@ -145,6 +145,7 @@ module "ecs_apps" {
145
| alb\_internal\_id | n/a |
146
| alb\_internal\_listener\_https\_arn | n/a |
147
| alb\_internal\_listener\_test\_traffic\_arn | n/a |
148
+| alb\_internal\_secgrp\_id | n/a |
149
| alb\_internal\_zone\_id | n/a |
150
| alb\_listener\_https\_arn | n/a |
151
| alb\_listener\_test\_traffic\_arn | n/a |
_outputs.tf
@@ -94,6 +94,10 @@ output "alb_secgrp_id" {
94
value = aws_security_group.alb.*.id
95
}
96
97
+output "alb_internal_secgrp_id" {
98
+ value = try(aws_security_group.alb_internal[0].id, "")
99
+}
100
+
101
output "efs_fs_id" {
102
value = try(aws_efs_file_system.ecs[0].id, "")
103
0 commit comments