add IRC subdomain

This commit is contained in:
Kat Inskip 2023-06-16 10:19:43 -07:00
parent ba6ca38613
commit fa19a286c5
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
2 changed files with 8 additions and 10 deletions

View file

@ -1,10 +0,0 @@
terraform {
backend "remote" {
hostname = "app.terraform.io"
organization = "kittywitch"
workspaces {
name = "infrastructure-tf"
}
}
}

8
tf/kw-irc.tf Normal file
View file

@ -0,0 +1,8 @@
resource "cloudflare_record" "irc" {
name = "irc"
proxied = false
ttl = 3600
type = "CNAME"
value = "yukari.gensokyo.zone"
zone_id = local.zone_ids.kittywitch
}