hcornet d76cae78e9
Some checks failed
terraform validation / Terraform (push) Failing after 8s
update
2025-01-13 20:43:15 +01:00

16 lines
311 B
HCL

resource "cloudflare_record" "sip-tls-terraform-srv" {
domain = "${var.cloudflare_zone}"
name = "_sip._tls"
type = "SRV"
data = {
service = "_sip"
proto = "_tls"
name = "terraform-srv"
priority = 0
weight = 0
port = 443
target = "tips-of-mine.com"
}
}