mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 04:19:19 -08:00
15 lines
No EOL
553 B
HCL
15 lines
No EOL
553 B
HCL
module "oci_common_private_network" {
|
|
source = "./oci_common_private_network"
|
|
|
|
cidr_blocks = [
|
|
"10.25.0.0/16"
|
|
]
|
|
|
|
display_name = "CoreNetwork"
|
|
dns_label = "core"
|
|
private_key = module.oci_compartment_bootstrap.child_compartment_key_value
|
|
region = var.oci_compartment_bootstrap_region
|
|
tenancy_ocid = module.oci_compartment_bootstrap.child_compartment_id
|
|
user_ocid = module.oci_compartment_bootstrap.child_user_id
|
|
fingerprint = module.oci_compartment_bootstrap.child_compartment_key_fingerprint
|
|
} |