Skip to content

Commit

Permalink
add t1/t2 app and ems records (#3395)
Browse files Browse the repository at this point in the history
  • Loading branch information
jnqn authored Sep 18, 2023
1 parent 82a59c3 commit 7551ffb
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion terraform/environments/nomis-data-hub/locals_test.tf
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,12 @@ locals {

baseline_route53_zones = {
"test.ndh.nomis.service.justice.gov.uk" = {
records = []
records = [
{ name = "t1-app", type = "A", ttl = 300, records = ["10.101.3.196"] },
{ name = "t1-ems", type = "A", ttl = 300, records = ["10.101.3.197"] },
{ name = "t2-app", type = "A", ttl = 300, records = ["10.101.33.196"] },
{ name = "t2-ems", type = "A", ttl = 300, records = ["10.101.33.197"] },
]
}
}
}
Expand Down

0 comments on commit 7551ffb

Please sign in to comment.