generated from snowplow-devops/terraform-module-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathoutputs.tf
34 lines (28 loc) · 1.07 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
output "named_port_http" {
value = var.named_port_http
description = "The name of the port exposed by the instance group"
}
output "named_port_value" {
value = var.ingress_port
description = "The named port value (e.g. 8080)"
}
output "manager_id" {
value = google_compute_region_instance_group_manager.grp.id
description = "Identifier for the instance group manager"
}
output "manager_self_link" {
value = google_compute_region_instance_group_manager.grp.self_link
description = "The URL for the instance group manager"
}
output "instance_group_url" {
value = google_compute_region_instance_group_manager.grp.instance_group
description = "The full URL of the instance group created by the manager"
}
output "health_check_id" {
value = join("", google_compute_health_check.hc.*.id)
description = "Identifier for the health check on the instance group"
}
output "health_check_self_link" {
value = join("", google_compute_health_check.hc.*.self_link)
description = "The URL for the health check on the instance group"
}