-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoutputs.tf
More file actions
69 lines (56 loc) · 1.85 KB
/
Copy pathoutputs.tf
File metadata and controls
69 lines (56 loc) · 1.85 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
output "server_lb_dns_name" {
value = module.lb.server_lb_dns
description = "The DNS name of the server load balancer"
}
output "server_lb_arn" {
value = module.lb.server_lb_arn
description = "The ARN of the server load balancer"
}
output "server_lb_arn_suffix" {
value = module.lb.server_lb_arn_suffix
description = "The ARN suffix of the server load balancer for use with CloudWatch"
}
output "server_lb_name" {
value = module.lb.server_lb_name
description = "The name of the server load balancer"
}
output "mqtt_lb_dns_name" {
value = module.lb.mqtt_lb_dns
description = "The DNS name of the mqtt load balancer"
}
output "mqtt_lb_arn" {
value = module.lb.mqtt_lb_arn
description = "The ARN of the mqtt load balancer"
}
output "mqtt_lb_arn_suffix" {
value = module.lb.mqtt_lb_arn_suffix
description = "The ARN suffix of the mqtt load balancer for use with CloudWatch"
}
output "mqtt_lb_name" {
value = module.lb.mqtt_lb_name
description = "The name of the mqtt load balancer"
}
output "vcs_gateway_lb_dns_name" {
value = module.lb.vcs_gateway_lb_dns
description = "The DNS name of the VCS gateway load balancer"
}
output "ecs_cluster_name" {
value = module.ecs.ecs_cluster_name
description = "The name of the ECS cluster"
}
output "server_service_name" {
value = module.ecs.server_service_name
description = "The name of the server ECS service"
}
output "drain_service_name" {
value = module.ecs.drain_service_name
description = "The name of the drain ECS service"
}
output "scheduler_service_name" {
value = module.ecs.scheduler_service_name
description = "The name of the scheduler ECS service"
}
output "vcs_gateway_service_name" {
value = module.ecs.vcs_gateway_service_name
description = "The name of the VCS gateway ECS service"
}