k3s/tests/terraform/modules/k3scluster/outputs.tf

15 lines
339 B
Terraform
Raw Normal View History

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"
}