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

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
1 changed files with 2 additions and 2 deletions

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
}