mirror of
https://git.vectorsigma.ru/public/k3s.git
synced 2026-08-01 07:59:44 +00:00
15 lines
339 B
HCL
15 lines
339 B
HCL
output "master_ips" {
|
|
value = module.master.master_ips
|
|
description = "The public IP of the AWS node"
|
|
}
|
|
|
|
output "worker_ips" {
|
|
value = module.worker.worker_ips
|
|
description = "The public IP of the AWS node"
|
|
}
|
|
|
|
output "kubeconfig" {
|
|
value = module.master.kubeconfig
|
|
description = "kubeconfig of the cluster created"
|
|
}
|