forked from frennky/terraform-oci-free
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.tf
20 lines (15 loc) · 777 Bytes
/
data.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Docs https://registry.terraform.io/providers/oracle/oci/latest/docs/data-sources/identity_availability_domains
# <tenancy-ocid> is the compartment OCID for the root compartment.
# Use <tenancy-ocid> for the compartment OCID.
data "oci_identity_availability_domains" "ads" {
compartment_id = var.tenancy
}
# Docs https://registry.terraform.io/providers/oracle/oci/latest/docs/data-sources/core_images
# <tenancy-ocid> is the compartment OCID for the root compartment.
# Use <tenancy-ocid> for the compartment OCID.
data "oci_core_images" "instance_images" {
compartment_id = var.tenancy
operating_system = var.image_operating_system
operating_system_version = var.image_operating_system_version
shape = var.instance_shape
}