feat(oci): attempt to make servers provisioned

This commit is contained in:
Kat Inskip 2024-06-09 11:10:54 -07:00
parent 0505f506d2
commit e5b2f39e99
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
6 changed files with 71 additions and 18 deletions

View file

@ -5,4 +5,12 @@ resource "oci_core_subnet" "this" {
display_name = oci_core_vcn.this.display_name
dns_label = "subnet"
}
locals {
subnet = oci_core_subnet.this
}
output "subnet_id" {
value = local.subnet.id
}