Migrate decker services to linode
Mostly just uptime-kuma
This commit is contained in:
parent
50398eac07
commit
cf0e718bfb
3 changed files with 3 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
||||||
"hosts":
|
"hosts":
|
||||||
"casey_ip": "108.61.221.88"
|
"casey_ip": "108.61.221.88"
|
||||||
"decker_ip": "95.179.223.50"
|
"decker_ip": "192.46.233.9"
|
||||||
"grimes_ip": "104.238.172.209"
|
"grimes_ip": "104.238.172.209"
|
||||||
"walker_ip": "192.248.168.230"
|
"walker_ip": "192.248.168.230"
|
||||||
|
|
|
@ -4,7 +4,7 @@ resource "local_file" "hosts" {
|
||||||
casey_ip : vultr_instance.casey.main_ip,
|
casey_ip : vultr_instance.casey.main_ip,
|
||||||
walker_ip : vultr_instance.walker.main_ip,
|
walker_ip : vultr_instance.walker.main_ip,
|
||||||
grimes_ip : vultr_instance.grimes.main_ip,
|
grimes_ip : vultr_instance.grimes.main_ip,
|
||||||
decker_ip : vultr_instance.decker.main_ip,
|
decker_ip : linode_instance.decker.ip_address,
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
filename = "${path.module}/../ansible/group_vars/all/hosts.yml"
|
filename = "${path.module}/../ansible/group_vars/all/hosts.yml"
|
||||||
|
|
|
@ -184,7 +184,7 @@ resource "cloudflare_record" "theorangeonenet_dokku_wildcard" {
|
||||||
resource "cloudflare_record" "theorangeonenet_status" {
|
resource "cloudflare_record" "theorangeonenet_status" {
|
||||||
zone_id = cloudflare_zone.theorangeonenet.id
|
zone_id = cloudflare_zone.theorangeonenet.id
|
||||||
name = "status"
|
name = "status"
|
||||||
value = vultr_instance.decker.main_ip
|
value = linode_instance.decker.ip_address
|
||||||
type = "A"
|
type = "A"
|
||||||
ttl = 1
|
ttl = 1
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue