Only add IPv4 address for PVE sys domain
All checks were successful
/ terraform (push) Successful in 34s
/ ansible (push) Successful in 1m44s

For some reason, ipv6 doesn't really work with my current setup. It'll change at another time, so it's future me's problem
This commit is contained in:
Jake Howard 2023-12-31 23:01:53 +00:00
parent 56bfe544e4
commit 6a14679edf
Signed by: jake
GPG Key ID: 57AFB45680EDD477

View File

@ -33,7 +33,7 @@ resource "cloudflare_record" "sys_domain_walker_v6" {
resource "cloudflare_record" "sys_domain_pve" {
zone_id = cloudflare_zone.theorangeonenet.id
name = "pve.sys"
value = cloudflare_record.sys_domain_casey.hostname
type = "CNAME"
value = linode_instance.casey.ip_address
type = "A"
ttl = 1
}