mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-10 04:49:19 -08:00
12 lines
No EOL
255 B
HCL
12 lines
No EOL
255 B
HCL
locals {
|
|
flex_public_ipv4 = oci_core_instance.that.public_ip
|
|
micro_public_ipv4s = oci_core_instance.this[*].public_ip
|
|
}
|
|
|
|
output "flex_public_ipv4" {
|
|
value = local.flex_public_ipv4
|
|
}
|
|
|
|
output "micro_public_ipv4s" {
|
|
value = local.micro_public_ipv4s
|
|
} |