mirror of
https://codeberg.org/scottslowe/learning-tools.git
synced 2026-03-11 09:04:37 +00:00
Add a sample Terraform configuration for working with Oracle Cloud Infrastructure (OCI) using the OCI Terraform provider Signed-off-by: Scott Lowe <scott.lowe@scottlowe.org>
8 lines
233 B
HCL
8 lines
233 B
HCL
data "oci_identity_availability_domains" "oci_ads" {
|
|
compartment_id = "${var.oci_tenancy_ocid}"
|
|
}
|
|
|
|
data "oci_core_images" "oci_base_image" {
|
|
compartment_id = "${var.oci_tenancy_ocid}"
|
|
display_name = "${var.oci_image_name}"
|
|
}
|