2018-12-15 21:48:08 -08:00
|
|
|
output "kubeconfig-admin" {
|
2019-01-05 14:36:55 -08:00
|
|
|
value = "${module.bootkube.kubeconfig-admin}"
|
2018-12-15 21:48:08 -08:00
|
|
|
}
|
|
|
|
|
2018-05-06 23:21:53 -07:00
|
|
|
# Outputs for Kubernetes Ingress
|
|
|
|
|
|
|
|
output "ingress_static_ipv4" {
|
|
|
|
description = "Global IPv4 address for proxy load balancing to the nearest Ingress controller"
|
2018-08-21 21:59:55 -07:00
|
|
|
value = "${google_compute_global_address.ingress-ipv4.address}"
|
2017-06-26 21:55:39 -07:00
|
|
|
}
|
2017-11-08 00:19:49 -08:00
|
|
|
|
2018-10-28 14:17:12 -07:00
|
|
|
output "ingress_static_ipv6" {
|
|
|
|
description = "Global IPv6 address for proxy load balancing to the nearest Ingress controller"
|
|
|
|
value = "${google_compute_global_address.ingress-ipv6.address}"
|
|
|
|
}
|
|
|
|
|
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" {
|
2019-01-02 23:30:42 -08:00
|
|
|
value = "${module.bootkube.kubeconfig-kubelet}"
|
2018-02-26 14:06:18 -08:00
|
|
|
}
|
2018-05-06 23:21:53 -07:00
|
|
|
|
|
|
|
# Outputs for custom firewalling
|
|
|
|
|
|
|
|
output "network_self_link" {
|
|
|
|
value = "${google_compute_network.network.self_link}"
|
|
|
|
}
|
|
|
|
|
|
|
|
# Outputs for custom load balancing
|
|
|
|
|
|
|
|
output "worker_instance_group" {
|
2019-03-30 15:12:55 -07:00
|
|
|
description = "Worker managed instance group full URL"
|
2018-08-21 21:59:55 -07:00
|
|
|
value = "${module.workers.instance_group}"
|
2018-05-06 23:21:53 -07:00
|
|
|
}
|
2019-03-30 15:12:55 -07:00
|
|
|
|
|
|
|
output "worker_target_pool" {
|
|
|
|
description = "Worker target pool self link"
|
|
|
|
value = "${module.workers.target_pool}"
|
|
|
|
}
|