mirror of https://github.com/k3s-io/k3s
18 lines
412 B
HCL
18 lines
412 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"
|
|
}
|
|
|
|
output "rendered_template" {
|
|
value = module.master.rendered_template
|
|
} |