Skip to content

Commit 9940971

Browse files
committed
NRL-847 modify account wide infrastructure for INT release
1 parent 84c21ba commit 9940971

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

terraform/account-wide-infrastructure/test/domain.tf

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,20 @@ module "int-custom-domain-name" {
2020
mtls_certificate_file = "s3://${module.int-truststore-bucket.bucket_name}/${module.int-truststore-bucket.certificates_object_key}"
2121
}
2222

23-
module "intsandbox-custom-domain-name" {
23+
24+
/*module "intsandbox-custom-domain-name" {
2425
source = "../modules/env-custom-domain-name"
2526
domain_name = var.intsandbox_api_domain_name
2627
domain_zone = aws_route53_zone.test-int-ns.name
2728
mtls_certificate_file = "s3://${module.int-truststore-bucket.bucket_name}/${module.int-truststore-bucket.certificates_object_key}"
2829
}
30+
*/
2931

32+
/*
3033
module "ref-custom-domain-name" {
3134
source = "../modules/env-custom-domain-name"
3235
domain_name = var.ref_api_domain_name
3336
domain_zone = aws_route53_zone.test-ref-ns.name
3437
mtls_certificate_file = "s3://${module.ref-truststore-bucket.bucket_name}/${module.ref-truststore-bucket.certificates_object_key}"
3538
}
39+
*/

terraform/account-wide-infrastructure/test/vars.tf

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,10 @@ variable "qasandbox_api_domain_name" {
1616

1717
variable "int_api_domain_name" {
1818
description = "The internal DNS name of the API Gateway for the int environment"
19-
default = "api.int.record-locator.national.nhs.uk"
19+
default = "int.api.record-locator.int.national.nhs.uk"
2020
}
2121

22+
/*
2223
variable "intsandbox_api_domain_name" {
2324
description = "The internal DNS name of the API Gateway for the int sandbox environment"
2425
default = "api-sandbox.int.record-locator.national.nhs.uk"
@@ -28,3 +29,4 @@ variable "ref_api_domain_name" {
2829
description = "The internal DNS name of the API Gateway for the ref environment"
2930
default = "api.ref.record-locator.national.nhs.uk"
3031
}
32+
*/

0 commit comments

Comments
 (0)