Provision a new caseyon Linode

This commit is contained in:
Jake Howard
2022-01-21 21:52:21 +00:00
parent 188b7c9dd6
commit af396a21cb
7 changed files with 91 additions and 22 deletions

View File

@ -5,7 +5,7 @@ resource "cloudflare_zone" "theorangeonenet" {
resource "cloudflare_record" "theorangeonenet_git" {
zone_id = cloudflare_zone.theorangeonenet.id
name = "git"
value = vultr_instance.casey.main_ip
value = linode_instance.casey.ip_address
type = "A"
ttl = 1
}
@ -13,7 +13,7 @@ resource "cloudflare_record" "theorangeonenet_git" {
resource "cloudflare_record" "theorangeonenet_whoami" {
zone_id = cloudflare_zone.theorangeonenet.id
name = "whoami"
value = vultr_instance.casey.main_ip
value = linode_instance.casey.ip_address
type = "A"
ttl = 1
}
@ -160,7 +160,7 @@ resource "cloudflare_record" "theorangeonenet_notes" {
resource "cloudflare_record" "theorangeonenet_privatebin" {
zone_id = cloudflare_zone.theorangeonenet.id
name = "bin"
value = vultr_instance.casey.main_ip
value = linode_instance.casey.ip_address
type = "A"
ttl = 1
}