mirror of
https://github.com/optim-enterprises-bv/terraform-talos.git
synced 2025-11-01 18:58:39 +00:00
25 lines
609 B
HCL
25 lines
609 B
HCL
|
|
data "oci_core_vcn_dns_resolver_association" "main" {
|
|
vcn_id = oci_core_vcn.main.id
|
|
}
|
|
|
|
data "oci_dns_resolver" "main" {
|
|
resolver_id = data.oci_core_vcn_dns_resolver_association.main.dns_resolver_id
|
|
scope = "PRIVATE"
|
|
}
|
|
|
|
resource "oci_dns_zone" "cluster" {
|
|
compartment_id = var.compartment_ocid
|
|
name = var.kubernetes["domain"]
|
|
zone_type = "PRIMARY"
|
|
scope = "PRIVATE"
|
|
view_id = data.oci_dns_resolver.main.default_view_id
|
|
defined_tags = merge(var.tags, { "Kubernetes.Type" = "infra" })
|
|
|
|
lifecycle {
|
|
ignore_changes = [
|
|
defined_tags
|
|
]
|
|
}
|
|
}
|