2018-12-16 06:48:08 +01:00
|
|
|
output "kubeconfig-admin" {
|
2019-09-15 01:24:32 +02:00
|
|
|
value = module.bootstrap.kubeconfig-admin
|
2018-12-16 06:48:08 +01:00
|
|
|
}
|
|
|
|
|
2018-05-07 08:21:53 +02:00
|
|
|
# Outputs for Kubernetes Ingress
|
|
|
|
|
|
|
|
output "ingress_static_ipv4" {
|
|
|
|
description = "Global IPv4 address for proxy load balancing to the nearest Ingress controller"
|
2019-05-28 06:14:25 +02:00
|
|
|
value = google_compute_global_address.ingress-ipv4.address
|
2017-06-27 06:55:39 +02:00
|
|
|
}
|
2017-11-08 09:19:49 +01:00
|
|
|
|
2018-10-28 22:17:12 +01:00
|
|
|
output "ingress_static_ipv6" {
|
|
|
|
description = "Global IPv6 address for proxy load balancing to the nearest Ingress controller"
|
2019-05-28 06:14:25 +02:00
|
|
|
value = google_compute_global_address.ingress-ipv6.address
|
2018-10-28 22:17:12 +01:00
|
|
|
}
|
|
|
|
|
2018-04-12 08:19:35 +02:00
|
|
|
# Outputs for worker pools
|
|
|
|
|
|
|
|
output "network_name" {
|
2019-05-28 06:14:25 +02:00
|
|
|
value = google_compute_network.network.name
|
2018-04-12 08:19:35 +02:00
|
|
|
}
|
|
|
|
|
2018-02-26 23:06:18 +01:00
|
|
|
output "kubeconfig" {
|
2019-09-15 01:24:32 +02:00
|
|
|
value = module.bootstrap.kubeconfig-kubelet
|
2018-02-26 23:06:18 +01:00
|
|
|
}
|
2018-05-07 08:21:53 +02:00
|
|
|
|
|
|
|
# Outputs for custom firewalling
|
|
|
|
|
|
|
|
output "network_self_link" {
|
2019-05-28 06:14:25 +02:00
|
|
|
value = google_compute_network.network.self_link
|
2018-05-07 08:21:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
# Outputs for custom load balancing
|
|
|
|
|
|
|
|
output "worker_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 = module.workers.instance_group
|
2018-05-07 08:21:53 +02:00
|
|
|
}
|
2019-03-30 23:12:55 +01:00
|
|
|
|
|
|
|
output "worker_target_pool" {
|
|
|
|
description = "Worker target pool self link"
|
2019-05-28 06:14:25 +02:00
|
|
|
value = module.workers.target_pool
|
2019-03-30 23:12:55 +01:00
|
|
|
}
|
2019-05-28 06:14:25 +02:00
|
|
|
|