feat: add git cname

Signed-off-by: Lander Van den Bulcke <landervandenbulcke@gmail.com>
This commit is contained in:
Lander Van den Bulcke 2025-07-08 13:02:13 +02:00
parent a2c9418765
commit ee2699ea05
Signed by: lander
GPG key ID: 0142722B4B0C536F

View file

@ -34,3 +34,12 @@ resource "cloudflare_dns_record" "auth-cname" {
type = "CNAME" type = "CNAME"
ttl = "3600" ttl = "3600"
} }
resource "cloudflare_dns_record" "git-cname" {
zone_id = data.cloudflare_zone.escapeangle.zone_id
name = "git.escapeangle.com"
content = "hosting-01.escapeangle.com"
type = "CNAME"
ttl = "3600"
}