mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 04:19:19 -08:00
feat(oci): attempt to make servers provisioned
This commit is contained in:
parent
0505f506d2
commit
e5b2f39e99
6 changed files with 71 additions and 18 deletions
|
|
@ -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
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue