Files
terraform-cloudflare-dns-zo…/records_srv.tf
Hubert Cornet 531c5cfb02
Some checks failed
Terraform Apply / Terraform Apply (push) Failing after 7s
Actualiser records_srv.tf
2025-08-04 19:42:36 +02:00

19 lines
424 B
HCL

resource "cloudflare_dns_record" "sip-tls-terraform-srv" {
zone_id = var.cloudflare_zone_id
comment = "Domain verification record Q"
data = {
#service = "_sip"
#proto = "_tls"
#name = "terraform-srv"
priority = 0
weight = 0
port = 443
target = "tips-of-mine.org"
}
name = "_sip._tls"
proxied = false
tags = []
ttl = 300
type = "SRV"
priority = 0
}