23 lines
438 B
HCL
23 lines
438 B
HCL
resource "gandi_livedns_domain" "orngone" {
|
|
name = "0rng.one"
|
|
}
|
|
|
|
resource "gandi_livedns_record" "orngone_apex" {
|
|
zone = gandi_livedns_domain.orngone.id
|
|
name = "@"
|
|
type = "A"
|
|
ttl = 3600
|
|
values = [
|
|
linode_instance.casey.ip_address
|
|
]
|
|
}
|
|
|
|
resource "gandi_livedns_record" "orngone_caa" {
|
|
zone = gandi_livedns_domain.orngone.id
|
|
name = "@"
|
|
type = "CAA"
|
|
ttl = 3600
|
|
values = [
|
|
"0 issue \"letsencrypt.org\""
|
|
]
|
|
}
|