mirror of
https://github.com/optim-enterprises-bv/terraform-talos.git
synced 2025-11-01 02:38:31 +00:00
21 lines
424 B
HCL
21 lines
424 B
HCL
|
|
data "oci_identity_availability_domains" "main" {
|
|
compartment_id = var.compartment_ocid
|
|
}
|
|
|
|
data "oci_objectstorage_namespace" "ns" {
|
|
compartment_id = var.compartment_ocid
|
|
}
|
|
|
|
locals {
|
|
zones = [for ad in data.oci_identity_availability_domains.main.availability_domains : ad.name]
|
|
}
|
|
|
|
data "oci_core_services" "object_store" {
|
|
filter {
|
|
name = "name"
|
|
values = ["OCI .* Object Storage"]
|
|
regex = true
|
|
}
|
|
}
|