2018-04-11 23:19:35 -07:00
|
|
|
# Deprecated
|
2017-11-05 11:01:50 -08:00
|
|
|
output "controllers_ipv4_public" {
|
2018-04-11 23:19:35 -07:00
|
|
|
value = ["${google_compute_instance.controllers.*.network_interface.0.access_config.0.assigned_nat_ip}"]
|
2017-11-05 11:01:50 -08:00
|
|
|
}
|
|
|
|
|
2017-06-26 21:55:39 -07:00
|
|
|
output "ingress_static_ip" {
|
|
|
|
value = "${module.workers.ingress_static_ip}"
|
|
|
|
}
|
2017-11-08 00:19:49 -08:00
|
|
|
|
|
|
|
output "network_self_link" {
|
|
|
|
value = "${google_compute_network.network.self_link}"
|
|
|
|
}
|
2018-02-26 14:06:18 -08:00
|
|
|
|
2018-04-11 23:19:35 -07:00
|
|
|
# Outputs for worker pools
|
|
|
|
|
|
|
|
output "network_name" {
|
|
|
|
value = "${google_compute_network.network.name}"
|
|
|
|
}
|
|
|
|
|
2018-02-26 14:06:18 -08:00
|
|
|
output "kubeconfig" {
|
|
|
|
value = "${module.bootkube.kubeconfig}"
|
|
|
|
}
|