Skip to content

Commit

Permalink
add dns records for ndh app and ems vms (#5571)
Browse files Browse the repository at this point in the history
  • Loading branch information
antonygowland authored Apr 4, 2024
1 parent b183a22 commit acad583
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions terraform/environments/nomis-data-hub/locals_preproduction.tf
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,15 @@ locals {
})
}

#when changing the ems entries in preprodution, also stop and start xtag to reconnect it.
baseline_route53_zones = {
"preproduction.ndh.nomis.service.justice.gov.uk" = {
records = []
"preprodution.ndh.nomis.service.justice.gov.uk" = {
records = [
{ name = "pp-app", type = "A", ttl = 300, records = ["10.40.37.197"] }, #azure
#{ name = "pp-app", type = "A", ttl = 300, records = ["10.27.0.196"] }, #aws
{ name = "pp-ems", type = "A", ttl = 300, records = ["10.40.37.199"] }, #azure
#{ name = "pp-ems", type = "A", ttl = 300, records = ["10.27.0.119"] }, #aws
]
}
}
}
Expand Down

0 comments on commit acad583

Please sign in to comment.