mirror of
https://git.vectorsigma.ru/public/k3s.git
synced 2026-08-04 18:59:40 +00:00
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"
|
|
}
|