Move walker IP into variable
The OVH provider is "completely fucked"!
This commit is contained in:
parent
52e8f34198
commit
f1170b8a9b
2 changed files with 5 additions and 1 deletions
|
@ -143,7 +143,7 @@ resource "cloudflare_record" "jakehowardtech_homeassistant" {
|
|||
resource "cloudflare_record" "jakehowardtech_contessa" {
|
||||
zone_id = cloudflare_zone.jakehowardtech.id
|
||||
name = "contessa"
|
||||
value = "5.39.79.153"
|
||||
value = var.walker_ip
|
||||
type = "A"
|
||||
ttl = 1
|
||||
}
|
||||
|
|
|
@ -1,2 +1,6 @@
|
|||
variable "vultr_api_key" {}
|
||||
variable "cloudflare_api_key" {}
|
||||
|
||||
variable "walker_ip" {
|
||||
default = "5.39.79.153"
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue