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 1a31cff commit fc1dbeeCopy full SHA for fc1dbee
outputs.tf
@@ -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