-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathoutputs.tf
49 lines (40 loc) · 1.71 KB
/
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
44
45
46
47
48
49
output "internal_url" {
value = "https://${var.subdomain}.${var.root_domain}:${var.internal_port}"
description = "Url of the internal sombra service. Depending on settings, it may only be accessible inside the VPC"
}
output "external_url" {
value = "https://${var.subdomain}.${var.root_domain}:${var.external_port}"
description = "Url of the external sombra service. It is publically accessible"
}
output "private_zone_id" {
value = module.load_balancer.private_zone_id
description = "The hosted zone id of the private zone for the internal load balancer, if a private zone exists"
}
output "internal_listener_arn" {
value = module.load_balancer.internal_listener_arn
description = "ARN of the internal sombra load balancer listener"
}
output "external_listener_arn" {
value = module.load_balancer.external_listener_arn
description = "ARN of the external sombra load balancer listener"
}
output "internal_target_group_arn" {
value = module.load_balancer.internal_target_group_arn
description = "ARN of the internal sombra load balancer target group"
}
output "external_target_group_arn" {
value = module.load_balancer.external_target_group_arn
description = "ARN of the external sombra load balancer target group"
}
output "lb_arn_suffix" {
value = module.load_balancer.arn_suffix
description = "Amazon Resource Name suffix for the load balancer. Only present in single alb configurations"
}
output "role_arn" {
value = module.service.role_arn
description = "Arn of the task execution role"
}
output "policy_arns" {
value = module.service.policy_arns
description = "Amazon resource names of all policies set on the IAM Role execution task"
}