mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
7f067d7fcd
Signed-off-by: Shylaja Devadiga <shylaja.devadiga@suse.com>
13 lines
287 B
HCL
13 lines
287 B
HCL
output "Registration_address" {
|
|
value = "${data.local_file.master_ip.content}"
|
|
}
|
|
|
|
output "master_node_token" {
|
|
value = "${data.local_file.token.content}"
|
|
}
|
|
|
|
output "worker_ips" {
|
|
value = join("," , aws_instance.worker.*.public_ip)
|
|
description = "The public IP of the AWS node"
|
|
}
|