mirror of
https://github.com/status-im/infra-nimbus.git
synced 2025-01-12 14:54:17 +00:00
12 lines
171 B
Terraform
12 lines
171 B
Terraform
|
output "public_ips" {
|
||
|
value = var.ips
|
||
|
}
|
||
|
|
||
|
output "hostnames" {
|
||
|
value = values(local.hostnames)
|
||
|
}
|
||
|
|
||
|
output "hosts" {
|
||
|
value = zipmap(values(local.hostnames), var.ips)
|
||
|
}
|