Self host my website 🎉

This commit is contained in:
Jake Howard
2020-04-10 11:31:01 +01:00
parent 92d33a0fa7
commit d0c36adba8
5 changed files with 50 additions and 4 deletions

View File

@ -87,16 +87,16 @@ resource "cloudflare_record" "theorangeonenet_dkim_fm3" {
resource "cloudflare_record" "theorangeonenet_www" {
zone_id = cloudflare_zone.theorangeonenet.id
name = "www"
value = "theorangeone-net.netlify.com"
type = "CNAME"
value = vultr_server.casey.main_ip
type = "A"
ttl = 1
}
resource "cloudflare_record" "theorangeonenet_apex" {
zone_id = cloudflare_zone.theorangeonenet.id
name = "@"
value = "theorangeone-net.netlify.com"
type = "CNAME"
value = vultr_server.casey.main_ip
type = "A"
ttl = 1
}