mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-10 04:49:19 -08:00
10 lines
No EOL
264 B
HCL
10 lines
No EOL
264 B
HCL
data "oci_core_vnic_attachments" "flex" {
|
|
compartment_id = var.tenancy_ocid
|
|
instance_id = local.flex.id
|
|
}
|
|
|
|
data "oci_core_vnic_attachments" "micros" {
|
|
count = 2
|
|
compartment_id = var.tenancy_ocid
|
|
instance_id = local.micros[count.index].id
|
|
} |