This commit is contained in:
16
records_srv.tf
Normal file
16
records_srv.tf
Normal file
@@ -0,0 +1,16 @@
|
||||
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"
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user