Ensure CNAME values are absolute
All checks were successful
/ terraform (push) Successful in 38s
/ ansible (push) Successful in 1m30s

This commit is contained in:
Jake Howard 2024-09-22 15:27:05 +01:00
parent d554dabdc5
commit 43ad69e118
Signed by: jake
GPG key ID: 57AFB45680EDD477
2 changed files with 45 additions and 45 deletions

View file

@ -8,8 +8,8 @@ resource "gandi_livedns_record" "jakehowardtech_mx" {
type = "MX" type = "MX"
ttl = 3600 ttl = 3600
values = [ values = [
"10 in1-smtp.messagingengine.com", "10 in1-smtp.messagingengine.com.",
"20 in2-smtp.messagingengine.com", "20 in2-smtp.messagingengine.com.",
] ]
} }
@ -29,7 +29,7 @@ resource "gandi_livedns_record" "jakehowardtech_dkim_fm1" {
type = "CNAME" type = "CNAME"
ttl = 3600 ttl = 3600
values = [ values = [
"fm1.jakehoward.tech.dkim.fmhosted.com" "fm1.jakehoward.tech.dkim.fmhosted.com."
] ]
} }
@ -39,7 +39,7 @@ resource "gandi_livedns_record" "jakehowardtech_dkim_fm2" {
type = "CNAME" type = "CNAME"
ttl = 3600 ttl = 3600
values = [ values = [
"fm2.jakehoward.tech.dkim.fmhosted.com" "fm2.jakehoward.tech.dkim.fmhosted.com."
] ]
} }
@ -49,7 +49,7 @@ resource "gandi_livedns_record" "jakehowardtech_dkim_fm3" {
type = "CNAME" type = "CNAME"
ttl = 3600 ttl = 3600
values = [ values = [
"fm3.jakehoward.tech.dkim.fmhosted.com" "fm3.jakehoward.tech.dkim.fmhosted.com."
] ]
} }
@ -69,7 +69,7 @@ resource "gandi_livedns_record" "jakehowardtech_wallabag" {
type = "CNAME" type = "CNAME"
ttl = 3600 ttl = 3600
values = [ values = [
gandi_livedns_record.sys_domain_pve.href "${gandi_livedns_record.sys_domain_pve.href}."
] ]
} }
@ -79,7 +79,7 @@ resource "gandi_livedns_record" "jakehowardtech_ttrss" {
type = "CNAME" type = "CNAME"
ttl = 3600 ttl = 3600
values = [ values = [
gandi_livedns_record.sys_domain_pve.href "${gandi_livedns_record.sys_domain_pve.href}."
] ]
} }
@ -89,7 +89,7 @@ resource "gandi_livedns_record" "jakehowardtech_speed" {
type = "CNAME" type = "CNAME"
ttl = 3600 ttl = 3600
values = [ values = [
gandi_livedns_record.sys_domain_pve.href "${gandi_livedns_record.sys_domain_pve.href}."
] ]
} }
@ -99,7 +99,7 @@ resource "gandi_livedns_record" "jakehowardtech_quassel" {
type = "CNAME" type = "CNAME"
ttl = 3600 ttl = 3600
values = [ values = [
gandi_livedns_record.sys_domain_pve.href "${gandi_livedns_record.sys_domain_pve.href}."
] ]
} }
@ -109,7 +109,7 @@ resource "gandi_livedns_record" "jakehowardtech_media" {
type = "CNAME" type = "CNAME"
ttl = 3600 ttl = 3600
values = [ values = [
gandi_livedns_record.sys_domain_pve.href "${gandi_livedns_record.sys_domain_pve.href}."
] ]
} }
@ -119,7 +119,7 @@ resource "gandi_livedns_record" "jakehowardtech_matrix" {
type = "CNAME" type = "CNAME"
ttl = 3600 ttl = 3600
values = [ values = [
gandi_livedns_record.sys_domain_pve.href "${gandi_livedns_record.sys_domain_pve.href}."
] ]
} }
@ -129,7 +129,7 @@ resource "gandi_livedns_record" "jakehowardtech_intersect" {
type = "CNAME" type = "CNAME"
ttl = 3600 ttl = 3600
values = [ values = [
gandi_livedns_record.sys_domain_pve.href "${gandi_livedns_record.sys_domain_pve.href}."
] ]
} }
@ -139,7 +139,7 @@ resource "gandi_livedns_record" "jakehowardtech_calibre" {
type = "CNAME" type = "CNAME"
ttl = 3600 ttl = 3600
values = [ values = [
gandi_livedns_record.sys_domain_pve.href "${gandi_livedns_record.sys_domain_pve.href}."
] ]
} }
@ -149,7 +149,7 @@ resource "gandi_livedns_record" "jakehowardtech_homeassistant" {
type = "CNAME" type = "CNAME"
ttl = 3600 ttl = 3600
values = [ values = [
gandi_livedns_record.sys_domain_pve_private.href "${gandi_livedns_record.sys_domain_pve_private.href}."
] ]
} }
@ -159,7 +159,7 @@ resource "gandi_livedns_record" "jakehowardtech_grafana" {
type = "CNAME" type = "CNAME"
ttl = 3600 ttl = 3600
values = [ values = [
gandi_livedns_record.sys_domain_pve.href "${gandi_livedns_record.sys_domain_pve.href}."
] ]
} }
@ -169,7 +169,7 @@ resource "gandi_livedns_record" "jakehowardtech_vaultwarden" {
type = "CNAME" type = "CNAME"
ttl = 3600 ttl = 3600
values = [ values = [
gandi_livedns_record.sys_domain_pve_private.href "${gandi_livedns_record.sys_domain_pve_private.href}."
] ]
} }
@ -179,7 +179,7 @@ resource "gandi_livedns_record" "jakehowardtech_recipes" {
type = "CNAME" type = "CNAME"
ttl = 3600 ttl = 3600
values = [ values = [
gandi_livedns_record.sys_domain_pve.href "${gandi_livedns_record.sys_domain_pve.href}."
] ]
} }
@ -219,7 +219,7 @@ resource "gandi_livedns_record" "jakehowardtech_synapse_admin" {
type = "CNAME" type = "CNAME"
ttl = 3600 ttl = 3600
values = [ values = [
gandi_livedns_record.sys_domain_pve.href "${gandi_livedns_record.sys_domain_pve.href}."
] ]
} }
@ -229,7 +229,7 @@ resource "gandi_livedns_record" "jakehowardtech_apex" {
type = "ALIAS" type = "ALIAS"
ttl = 3600 ttl = 3600
values = [ values = [
gandi_livedns_record.sys_domain_walker.href "${gandi_livedns_record.sys_domain_walker.href}."
] ]
} }
@ -239,7 +239,7 @@ resource "gandi_livedns_record" "jakehowardtech_collabora" {
type = "CNAME" type = "CNAME"
ttl = 3600 ttl = 3600
values = [ values = [
gandi_livedns_record.sys_domain_pve.href "${gandi_livedns_record.sys_domain_pve.href}."
] ]
} }
@ -249,7 +249,7 @@ resource "gandi_livedns_record" "jakehowardtech_tasks" {
type = "CNAME" type = "CNAME"
ttl = 3600 ttl = 3600
values = [ values = [
gandi_livedns_record.sys_domain_pve.href "${gandi_livedns_record.sys_domain_pve.href}."
] ]
} }
@ -259,7 +259,7 @@ resource "gandi_livedns_record" "jakehowardtech_auth" {
type = "CNAME" type = "CNAME"
ttl = 3600 ttl = 3600
values = [ values = [
gandi_livedns_record.sys_domain_pve.href "${gandi_livedns_record.sys_domain_pve.href}."
] ]
} }
@ -269,7 +269,7 @@ resource "gandi_livedns_record" "jakehowardtech_minio" {
type = "CNAME" type = "CNAME"
ttl = 3600 ttl = 3600
values = [ values = [
gandi_livedns_record.sys_domain_pve.href "${gandi_livedns_record.sys_domain_pve.href}."
] ]
} }
@ -279,7 +279,7 @@ resource "gandi_livedns_record" "jakehowardtech_s3" {
type = "CNAME" type = "CNAME"
ttl = 3600 ttl = 3600
values = [ values = [
gandi_livedns_record.sys_domain_pve.href "${gandi_livedns_record.sys_domain_pve.href}."
] ]
} }
@ -289,7 +289,7 @@ resource "gandi_livedns_record" "jakehowardtech_ntfy" {
type = "CNAME" type = "CNAME"
ttl = 3600 ttl = 3600
values = [ values = [
gandi_livedns_record.sys_domain_pve.href "${gandi_livedns_record.sys_domain_pve.href}."
] ]
} }
@ -299,7 +299,7 @@ resource "gandi_livedns_record" "jakehowardtech_headscale" {
type = "CNAME" type = "CNAME"
ttl = 3600 ttl = 3600
values = [ values = [
gandi_livedns_record.sys_domain_casey.href "${gandi_livedns_record.sys_domain_casey.href}."
] ]
} }
@ -309,7 +309,7 @@ resource "gandi_livedns_record" "jakehowardtech_slides" {
type = "CNAME" type = "CNAME"
ttl = 3600 ttl = 3600
values = [ values = [
gandi_livedns_record.sys_domain_walker.href "${gandi_livedns_record.sys_domain_walker.href}."
] ]
} }
@ -319,7 +319,7 @@ resource "gandi_livedns_record" "jakehowardtech_uptime" {
type = "CNAME" type = "CNAME"
ttl = 3600 ttl = 3600
values = [ values = [
gandi_livedns_record.sys_domain_pve.href "${gandi_livedns_record.sys_domain_pve.href}."
] ]
} }

View file

@ -8,7 +8,7 @@ resource "gandi_livedns_record" "theorangeonenet_git" {
type = "CNAME" type = "CNAME"
ttl = 3600 ttl = 3600
values = [ values = [
gandi_livedns_record.sys_domain_pve.href "${gandi_livedns_record.sys_domain_pve.href}."
] ]
} }
@ -18,7 +18,7 @@ resource "gandi_livedns_record" "theorangeonenet_whoami" {
type = "CNAME" type = "CNAME"
ttl = 3600 ttl = 3600
values = [ values = [
gandi_livedns_record.sys_domain_pve.href "${gandi_livedns_record.sys_domain_pve.href}."
] ]
} }
@ -28,7 +28,7 @@ resource "gandi_livedns_record" "theorangeonenet_whoami_cdn" {
type = "CNAME" type = "CNAME"
ttl = 3600 ttl = 3600
values = [ values = [
gandi_livedns_record.sys_domain_pve.href "${gandi_livedns_record.sys_domain_pve.href}."
] ]
} }
@ -38,7 +38,7 @@ resource "gandi_livedns_record" "theorangeonenet_whoami_private" {
type = "CNAME" type = "CNAME"
ttl = 3600 ttl = 3600
values = [ values = [
gandi_livedns_record.sys_domain_pve.href "${gandi_livedns_record.sys_domain_pve.href}."
] ]
} }
@ -48,8 +48,8 @@ resource "gandi_livedns_record" "theorangeonenet_mx" {
type = "MX" type = "MX"
ttl = 3600 ttl = 3600
values = [ values = [
"10 in1-smtp.messagingengine.com", "10 in1-smtp.messagingengine.com.",
"20 in2-smtp.messagingengine.com", "20 in2-smtp.messagingengine.com.",
] ]
} }
@ -69,7 +69,7 @@ resource "gandi_livedns_record" "theorangeonenet_dkim_fm1" {
type = "CNAME" type = "CNAME"
ttl = 3600 ttl = 3600
values = [ values = [
"fm1.theorangeone.net.dkim.fmhosted.com" "fm1.theorangeone.net.dkim.fmhosted.com."
] ]
} }
@ -79,7 +79,7 @@ resource "gandi_livedns_record" "theorangeonenet_dkim_fm2" {
type = "CNAME" type = "CNAME"
ttl = 3600 ttl = 3600
values = [ values = [
"fm2.theorangeone.net.dkim.fmhosted.com" "fm2.theorangeone.net.dkim.fmhosted.com."
] ]
} }
@ -89,7 +89,7 @@ resource "gandi_livedns_record" "theorangeonenet_dkim_fm3" {
type = "CNAME" type = "CNAME"
ttl = 3600 ttl = 3600
values = [ values = [
"fm3.theorangeone.net.dkim.fmhosted.com" "fm3.theorangeone.net.dkim.fmhosted.com."
] ]
} }
@ -126,7 +126,7 @@ resource "gandi_livedns_record" "theorangeonenet_apex" {
type = "ALIAS" type = "ALIAS"
ttl = 3600 ttl = 3600
values = [ values = [
gandi_livedns_record.sys_domain_walker.href "${gandi_livedns_record.sys_domain_walker.href}."
] ]
} }
@ -146,7 +146,7 @@ resource "gandi_livedns_record" "theorangeonenet_matrix" {
type = "CNAME" type = "CNAME"
ttl = 3600 ttl = 3600
values = [ values = [
gandi_livedns_record.sys_domain_pve.href "${gandi_livedns_record.sys_domain_pve.href}."
] ]
} }
@ -156,7 +156,7 @@ resource "gandi_livedns_record" "theorangeonenet_plausible" {
type = "CNAME" type = "CNAME"
ttl = 3600 ttl = 3600
values = [ values = [
gandi_livedns_record.sys_domain_walker.href "${gandi_livedns_record.sys_domain_walker.href}."
] ]
} }
@ -166,7 +166,7 @@ resource "gandi_livedns_record" "theorangeonenet_plausible_bare" {
type = "CNAME" type = "CNAME"
ttl = 3600 ttl = 3600
values = [ values = [
gandi_livedns_record.sys_domain_walker.href "${gandi_livedns_record.sys_domain_walker.href}."
] ]
} }
@ -176,7 +176,7 @@ resource "gandi_livedns_record" "theorangeonenet_notes" {
type = "CNAME" type = "CNAME"
ttl = 3600 ttl = 3600
values = [ values = [
"realorangeone.github.io" "realorangeone.github.io."
] ]
} }
@ -186,7 +186,7 @@ resource "gandi_livedns_record" "theorangeonenet_bin" {
type = "CNAME" type = "CNAME"
ttl = 3600 ttl = 3600
values = [ values = [
gandi_livedns_record.sys_domain_pve.href "${gandi_livedns_record.sys_domain_pve.href}."
] ]
} }
@ -236,7 +236,7 @@ resource "gandi_livedns_record" "theorangeonenet_mastodon" {
type = "CNAME" type = "CNAME"
ttl = 3600 ttl = 3600
values = [ values = [
gandi_livedns_record.sys_domain_pve.href "${gandi_livedns_record.sys_domain_pve.href}."
] ]
} }
@ -246,7 +246,7 @@ resource "gandi_livedns_record" "theorangeonenet_comentario" {
type = "CNAME" type = "CNAME"
ttl = 3600 ttl = 3600
values = [ values = [
gandi_livedns_record.sys_domain_walker.href "${gandi_livedns_record.sys_domain_walker.href}."
] ]
} }