feat(oci servers); add ipv4 exports

This commit is contained in:
Kat Inskip 2024-06-09 13:03:08 -07:00
parent 4166e1eabe
commit 8052695501
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
2 changed files with 25 additions and 1 deletions

View file

@ -20,4 +20,16 @@ module "oci_servers" {
depends_on = [
module.oci_compartment_bootstrap
]
}
}
output "daiyousei_public_ipv4" {
value = module.oci_servers.flex_public_ipv4
}
output "mei_public_ipv4" {
value = module.oci_servers.micro_public_ipv4s[0]
}
output "mai_public_ipv4" {
value = module.oci_servers.micro_public_ipv4s[1]
}