mirror of https://github.com/k3s-io/k3s
15 lines
339 B
Terraform
15 lines
339 B
Terraform
|
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"
|
||
|
}
|