From 53d8d6f4ca66a911ef65ed86315a0ffa535fb626 Mon Sep 17 00:00:00 2001 From: Lander Van den Bulcke Date: Mon, 7 Jul 2025 11:36:54 +0200 Subject: [PATCH] feat: add auth cname Signed-off-by: Lander Van den Bulcke --- hosting.tf | 9 +++++++++ 1 file changed, 9 insertions(+) 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" +}