diff --git a/hosting.tf b/hosting.tf index fe44264..bc528a8 100644 --- a/hosting.tf +++ b/hosting.tf @@ -25,3 +25,12 @@ resource "cloudflare_dns_record" "users-cname" { type = "CNAME" ttl = "3600" } + +resource "cloudflare_dns_record" "auth-cname" { + zone_id = data.cloudflare_zone.escapeangle.id + + name = "auth.escapeangle.com" + content = "hosting-01.escapeangle.com" + type = "CNAME" + ttl = "3600" +}