Skip to content

Commit fc1dbee

Browse files
author
rohit-ng
committed
chore: add outputs for main module
1 parent 1a31cff commit fc1dbee

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

outputs.tf

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
output "rds_instance_endpoint" {
2+
description = "Endpoint of RDS instance"
3+
value = module.kong_rds.db_instance_endpoint
4+
}
5+
6+
output "ecs_service_arn" {
7+
description = "ARN of kong ECS service"
8+
value = module.ecs_kong.ecs_service_arn
9+
}
10+
11+
output "public_alb_dns" {
12+
description = "DNS name of public ALB"
13+
value = module.ecs_kong.alb_dns_name
14+
}
15+
16+
output "internal_alb_dns" {
17+
description = "DNS name of internal ALB"
18+
value = module.internal_alb_kong.arn
19+
}

0 commit comments

Comments
 (0)