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