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