Skip to content

Commit

Permalink
add test env NS records and preprod dns zone (#4174)
Browse files Browse the repository at this point in the history
  • Loading branch information
robertsweetman authored Nov 29, 2023
1 parent 6dc980b commit c3c951d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
3 changes: 3 additions & 0 deletions terraform/environments/planetfm/locals_preproduction.tf
Original file line number Diff line number Diff line change
Expand Up @@ -153,5 +153,8 @@ locals {
})
})
}
baseline_route53_zones = {
"pp.planetfm.service.justice.gov.uk" = {}
}
}
}
6 changes: 5 additions & 1 deletion terraform/environments/planetfm/locals_production.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@ locals {
# baseline config
production_config = {
baseline_route53_zones = {
"planetfm.service.justice.gov.uk" = {}
"planetfm.service.justice.gov.uk" = {
records = [
{ name = "test", type = "NS", ttl = "86400", records = ["ns-1128.awsdns-13.org", "ns-2027.awsdns-61.co.uk", "ns-854.awsdns-42.net", "ns-90.awsdns-11.com"] },
]
}
}
}
}

0 comments on commit c3c951d

Please sign in to comment.