Skip to content
Snippets Groups Projects
Verified Commit e680dc3b authored by Evangelos Foutras's avatar Evangelos Foutras :smiley_cat:
Browse files

tf-stage1: bump TTL to 86400 for NS records

The default TTL of 3600 seems a bit short for these.
parent 2d1e9b57
No related branches found
No related tags found
1 merge request!542tf-stage1: standardize on TTL 3600 for DNS records
Pipeline #16526 passed
......@@ -394,6 +394,7 @@ resource "hetznerdns_record" "pkgbuild_com_origin_ns3" {
name = "@"
value = "helium.ns.hetzner.de."
type = "NS"
ttl = 86400
}
resource "hetznerdns_record" "pkgbuild_com_origin_ns2" {
......@@ -401,6 +402,7 @@ resource "hetznerdns_record" "pkgbuild_com_origin_ns2" {
name = "@"
value = "oxygen.ns.hetzner.com."
type = "NS"
ttl = 86400
}
resource "hetznerdns_record" "pkgbuild_com_origin_ns1" {
......@@ -408,6 +410,7 @@ resource "hetznerdns_record" "pkgbuild_com_origin_ns1" {
name = "@"
value = "hydrogen.ns.hetzner.com."
type = "NS"
ttl = 86400
}
# TODO: Commented currently as we have no idea how to handle SOA stuff with Terraform:
......@@ -439,6 +442,7 @@ resource "hetznerdns_record" "archlinux_org_origin_ns3" {
name = "@"
value = "helium.ns.hetzner.de."
type = "NS"
ttl = 86400
}
resource "hetznerdns_record" "archlinux_org_origin_ns2" {
......@@ -446,6 +450,7 @@ resource "hetznerdns_record" "archlinux_org_origin_ns2" {
name = "@"
value = "oxygen.ns.hetzner.com."
type = "NS"
ttl = 86400
}
resource "hetznerdns_record" "archlinux_org_origin_ns1" {
......@@ -453,6 +458,7 @@ resource "hetznerdns_record" "archlinux_org_origin_ns1" {
name = "@"
value = "hydrogen.ns.hetzner.com."
type = "NS"
ttl = 86400
}
# TODO: Commented currently as we have no idea how to handle SOA stuff with Terraform:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment