Carga inicial
This commit is contained in:
32
data_sources.tf
Executable file
32
data_sources.tf
Executable file
@@ -0,0 +1,32 @@
|
||||
# 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"]
|
||||
}
|
||||
Reference in New Issue
Block a user