Add upload server

This commit is contained in:
Jake Howard
2020-05-08 21:27:32 +01:00
parent 2618f38c52
commit 2f523075ae
5 changed files with 137 additions and 0 deletions

View File

@ -116,3 +116,35 @@ resource "cloudflare_record" "theorangeonenet_srv_matrix" {
target = cloudflare_record.jakehowardtech_matrix.hostname
}
}
resource "cloudflare_record" "theorangeonenet_img" {
zone_id = cloudflare_zone.theorangeonenet.id
name = "img"
value = vultr_server.grimes.main_ip
type = "A"
ttl = 1
}
resource "cloudflare_record" "theorangeonenet_dl" {
zone_id = cloudflare_zone.theorangeonenet.id
name = "dl"
value = vultr_server.grimes.main_ip
type = "A"
ttl = 1
}
resource "cloudflare_record" "theorangeonenet_bg" {
zone_id = cloudflare_zone.theorangeonenet.id
name = "bg"
value = vultr_server.grimes.main_ip
type = "A"
ttl = 1
}
resource "cloudflare_record" "theorangeonenet_upload" {
zone_id = cloudflare_zone.theorangeonenet.id
name = "upload"
value = vultr_server.grimes.main_ip
type = "A"
ttl = 1
}