2019-03-30 23:12:55 +01:00
|
|
|
# Outputs for global load balancing
|
|
|
|
|
2018-05-07 08:21:53 +02:00
|
|
|
output "instance_group" {
|
2019-03-30 23:12:55 +01:00
|
|
|
description = "Worker managed instance group full URL"
|
2019-05-28 06:14:25 +02:00
|
|
|
value = google_compute_region_instance_group_manager.workers.instance_group
|
2017-06-27 06:55:39 +02:00
|
|
|
}
|
2019-03-30 23:12:55 +01:00
|
|
|
|
|
|
|
# Outputs for regional load balancing
|
|
|
|
|
|
|
|
output "target_pool" {
|
|
|
|
description = "Worker target pool self link"
|
2019-05-28 06:14:25 +02:00
|
|
|
value = google_compute_target_pool.workers.self_link
|
2019-03-30 23:12:55 +01:00
|
|
|
}
|
2019-05-28 06:14:25 +02:00
|
|
|
|