-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathoutputs.tf
43 lines (40 loc) · 873 Bytes
/
outputs.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#output "vpc-id" {
# value = module.vpc.vpc-id
#}
#
#output "private-subnets" {
# value = module.vpc.private-subnets
#}
#
#output "public-subnets" {
# value = module.vpc.public-subnets
#}
#output "internal-alb-dns" {
# value = module.internal-alb.internal-alb-dns
#}
#
#output "internal-alb-target-groups" {
# value = module.internal-alb.target-groups
#}
#
#output "public-alb-target-groups" {
# value = module.public-alb.target-groups
#}
#
#output "aws_alb_listener" {
# value = module.internal-alb.aws_alb_listener
#}
#output "ecr-repositories" {
# value = module.ecr.repository-services
#}
#
#output "ecs-task-execution-role-arn" {
# value = module.iam.ecs-task-execution-role-arn
#}
#output "aws_cloudwatch_log_group" {
# value = module.ecs.aws_cloudwatch_log_group
#}
#
#output "aws_ecs_task_definition" {
# value = module.ecs.aws_cloudwatch_log_group
#}