From ee2699ea0526e2ff794db821f7a223cf8343e011 Mon Sep 17 00:00:00 2001 From: Lander Van den Bulcke Date: Tue, 8 Jul 2025 13:02:13 +0200 Subject: [PATCH] feat: add git 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 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" +}