infrastructure/terraform/0rng.one.tf
Jake Howard 5564709544
Remove the.-rng.one
Turns out it only redirects if I set it up to, which is annoying
2020-03-20 22:03:45 +00:00

12 lines
235 B
HCL

resource "cloudflare_zone" "orngone" {
zone = "0rng.one"
}
resource "cloudflare_record" "orngone_git" {
zone_id = cloudflare_zone.orngone.id
name = "git"
value = vultr_server.casey.main_ip
type = "A"
ttl = 1
}