mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 12:29:19 -08:00
feat(oci): add admin policy
This commit is contained in:
parent
3711cf0255
commit
0505f506d2
10 changed files with 244 additions and 12 deletions
8
tf/oci_common_private_network/subnet.tf
Normal file
8
tf/oci_common_private_network/subnet.tf
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
resource "oci_core_subnet" "this" {
|
||||
cidr_block = oci_core_vcn.this.cidr_blocks.0
|
||||
compartment_id = var.tenancy_ocid
|
||||
vcn_id = oci_core_vcn.this.id
|
||||
|
||||
display_name = oci_core_vcn.this.display_name
|
||||
dns_label = "subnet"
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue