cloud-demo/terraform/outputs.tf
CodeGit 5c2080a73b
Some checks failed
terraform / validate (push) Waiting to run
build-hello-app / build-and-push (push) Has been cancelled
initial scaffold
2026-08-18 20:22:42 +01:00

8 lines
211 B
HCL

output "server_ip" {
description = "IP of the k3s server node — fetch its kubeconfig from here"
value = local.server_ip
}
output "node_ips" {
value = { for name, n in var.nodes : name => n.ip }
}