mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
13 lines
287 B
Terraform
13 lines
287 B
Terraform
|
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"
|
||
|
}
|