Add resources for theorangeone.net forwarding domains

This commit is contained in:
Jake Howard 2020-03-20 20:57:23 +00:00
parent d7bb71d14b
commit 22c0e746c2
Signed by: jake
GPG Key ID: 57AFB45680EDD477

View File

@ -1,3 +1,35 @@
resource "cloudflare_zone" "theorangeonenet" {
zone = "theorangeone.net"
}
resource "cloudflare_record" "theorangeonenet_git" {
zone_id = cloudflare_zone.theorangeonenet.id
name = "git"
value = vultr_server.casey.main_ip
type = "A"
ttl = 1
}
resource "cloudflare_record" "theorangeonenet_go" {
zone_id = cloudflare_zone.theorangeonenet.id
name = "go"
value = vultr_server.casey.main_ip
type = "A"
ttl = 1
}
resource "cloudflare_record" "theorangeonenet_stats" {
zone_id = cloudflare_zone.theorangeonenet.id
name = "stats"
value = vultr_server.casey.main_ip
type = "A"
ttl = 1
}
resource "cloudflare_record" "theorangeonenet_whoami" {
zone_id = cloudflare_zone.theorangeonenet.id
name = "whoami"
value = vultr_server.casey.main_ip
type = "A"
ttl = 1
}