Files
offline_kubespray/kubespray/contrib/terraform/gcp/output.tf
ByeonJungHun 360c6eef4a offline 작업
2024-02-19 16:02:29 +09:00

16 lines
351 B
HCL

output "master_ips" {
value = module.kubernetes.master_ip_addresses
}
output "worker_ips" {
value = module.kubernetes.worker_ip_addresses
}
output "ingress_controller_lb_ip_address" {
value = module.kubernetes.ingress_controller_lb_ip_address
}
output "control_plane_lb_ip_address" {
value = module.kubernetes.control_plane_lb_ip_address
}