Correctly format domains for Gandi
Gandi requires CNAMEs end with `.`, because it doesn't handle that magically.
This commit is contained in:
parent
9e7ccb81ec
commit
9a65bc74a3
1 changed files with 3 additions and 3 deletions
|
@ -8,7 +8,7 @@ resource "gandi_livedns_record" "orngone_git" {
|
||||||
type = "CNAME"
|
type = "CNAME"
|
||||||
ttl = 3600
|
ttl = 3600
|
||||||
values = [
|
values = [
|
||||||
cloudflare_record.theorangeonenet_git.hostname
|
"${cloudflare_record.theorangeonenet_git.hostname}."
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -18,7 +18,7 @@ resource "gandi_livedns_record" "orngone_who" {
|
||||||
type = "CNAME"
|
type = "CNAME"
|
||||||
ttl = 3600
|
ttl = 3600
|
||||||
values = [
|
values = [
|
||||||
cloudflare_record.theorangeonenet_whoami.hostname
|
"${cloudflare_record.theorangeonenet_whoami.hostname}."
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -28,7 +28,7 @@ resource "gandi_livedns_record" "orngone_img" {
|
||||||
type = "CNAME"
|
type = "CNAME"
|
||||||
ttl = 3600
|
ttl = 3600
|
||||||
values = [
|
values = [
|
||||||
cloudflare_record.theorangeonenet_img.hostname
|
"${cloudflare_record.theorangeonenet_img.hostname}."
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue