diff --git a/hosting.tf b/hosting.tf index f2557a0..33ff9dd 100644 --- a/hosting.tf +++ b/hosting.tf @@ -34,3 +34,12 @@ resource "cloudflare_dns_record" "auth-cname" { type = "CNAME" 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" +}