32 lines
1.0 KiB
HCL
Executable File
32 lines
1.0 KiB
HCL
Executable File
# Copyright (c) 2023, 2025, Oracle and/or its affiliates.
|
|
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl/
|
|
|
|
data "oci_core_images" "ol9_latest" {
|
|
compartment_id = var.ocid_compartment_app
|
|
operating_system = "Oracle Linux"
|
|
operating_system_version = "9"
|
|
shape = var.sei_shape
|
|
sort_by = "TIMECREATED"
|
|
sort_order = "DESC"
|
|
}
|
|
|
|
data "oci_identity_availability_domain" "ad" {
|
|
compartment_id = var.tenancy_ocid
|
|
ad_number = 1
|
|
}
|
|
|
|
data "oci_identity_availability_domains" "ads" {
|
|
compartment_id = var.tenancy_ocid
|
|
}
|
|
|
|
data "oci_identity_fault_domains" "fds" {
|
|
availability_domain = data.oci_identity_availability_domains.ads.availability_domains[0].name
|
|
compartment_id = var.tenancy_ocid
|
|
}
|
|
|
|
data "oci_mysql_mysql_configurations" "sei_mysql_configurations" {
|
|
compartment_id = var.ocid_compartment_app
|
|
state = "ACTIVE"
|
|
shape_name = "MySQL.4"
|
|
type = ["DEFAULT"]
|
|
} |