2021-03-15 08:41:04 +00:00
|
|
|
|
|
|
|
output "master_ip" {
|
|
|
|
value = {
|
|
|
|
for instance in upcloud_server.master :
|
2021-09-10 20:55:21 +00:00
|
|
|
instance.hostname => {
|
|
|
|
"public_ip": instance.network_interface[0].ip_address
|
|
|
|
"private_ip": instance.network_interface[1].ip_address
|
|
|
|
}
|
2021-03-15 08:41:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
output "worker_ip" {
|
|
|
|
value = {
|
|
|
|
for instance in upcloud_server.worker :
|
2021-09-10 20:55:21 +00:00
|
|
|
instance.hostname => {
|
|
|
|
"public_ip": instance.network_interface[0].ip_address
|
|
|
|
"private_ip": instance.network_interface[1].ip_address
|
|
|
|
}
|
2021-03-15 08:41:04 +00:00
|
|
|
}
|
|
|
|
}
|