From e072937be4f96798f703df2deba1a3fcb05eed33 Mon Sep 17 00:00:00 2001 From: Ariadne Conill Date: Mon, 30 May 2022 11:09:25 +0000 Subject: [PATCH] dns: add minecraft survival service --- dns/main.tf | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/dns/main.tf b/dns/main.tf index a9f8779..460d487 100644 --- a/dns/main.tf +++ b/dns/main.tf @@ -98,6 +98,14 @@ resource "linode_domain_record" "discord_cname" { target = "kn-oci-sanjose.ingress.treehouse.systems" } +// Treehouse services: Minecraft (OVH, managed by Kenneth) +resource "linode_domain_record" "minecraft_cname" { + domain_id = "${linode_domain.treehouse_domain.id}" + name = "survival.minecraft" + record_type = "CNAME" + target = "survival.treehouse.fork.run" +} + // Apex domain settings. resource "linode_domain_record" "apex_v4" { domain_id = "${linode_domain.treehouse_domain.id}"