mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
4f03532f47
Signed-off-by: Shylaja Devadiga <shylaja@rancher.com>
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"
|
|
}
|