Move website over to walker

This commit is contained in:
Jake Howard 2020-08-04 20:54:53 +01:00
parent 6ceea80ee7
commit e184c7fba1
Signed by: jake
GPG Key ID: 57AFB45680EDD477
2 changed files with 3 additions and 3 deletions

View File

@ -41,7 +41,6 @@
- hosts: grimes - hosts: grimes
roles: roles:
- website
- socks-proxy - socks-proxy
- hosts: walker - hosts: walker
@ -49,4 +48,5 @@
- contessa - contessa
- statping - statping
- upload - upload
- website
- zfs - zfs

View File

@ -79,7 +79,7 @@ resource "cloudflare_record" "theorangeonenet_dkim_fm3" {
resource "cloudflare_record" "theorangeonenet_www" { resource "cloudflare_record" "theorangeonenet_www" {
zone_id = cloudflare_zone.theorangeonenet.id zone_id = cloudflare_zone.theorangeonenet.id
name = "www" name = "www"
value = vultr_server.grimes.main_ip value = var.walker_ip
type = "A" type = "A"
ttl = 1 ttl = 1
} }
@ -87,7 +87,7 @@ resource "cloudflare_record" "theorangeonenet_www" {
resource "cloudflare_record" "theorangeonenet_apex" { resource "cloudflare_record" "theorangeonenet_apex" {
zone_id = cloudflare_zone.theorangeonenet.id zone_id = cloudflare_zone.theorangeonenet.id
name = "@" name = "@"
value = vultr_server.grimes.main_ip value = var.walker_ip
type = "A" type = "A"
ttl = 1 ttl = 1
} }