File tree Expand file tree Collapse file tree 3 files changed +9
-9
lines changed
Expand file tree Collapse file tree 3 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ resource "aws_api_gateway_domain_name" "mtls_custom_api_domain" {
2121 }
2222
2323 mutual_tls_authentication {
24- truststore_uri = " s3://${ module . s3bucket_truststore . id } "
24+ truststore_uri = " s3://${ module . s3bucket_truststore . id } "
2525 }
2626}
2727
Original file line number Diff line number Diff line change @@ -118,12 +118,12 @@ module "ndr-bulk-staging-store" {
118118
119119# Bucket to hold trusted CA's for MTLS
120120module "s3bucket_truststore" {
121- source = " ./modules/s3"
122- access_logs_enabled = local. is_production
123- access_logs_bucket_id = local. access_logs_bucket_id
124- bucket_name = var. staging_store_bucket_name
125- environment = var. environment
126- owner = var. owner
121+ source = " ./modules/s3"
122+ access_logs_enabled = local. is_production
123+ access_logs_bucket_id = local. access_logs_bucket_id
124+ bucket_name = var. staging_store_bucket_name
125+ environment = var. environment
126+ owner = var. owner
127127
128128 # aws_account_id = var.aws_account_id
129129 # project = var.project
Original file line number Diff line number Diff line change @@ -212,8 +212,8 @@ locals {
212212
213213 bulk_upload_lambda_concurrent_limit = 5
214214
215- api_gateway_subdomain_name = contains ([" prod" ], terraform. workspace ) ? " ${ var . certificate_subdomain_name_prefix } " : " ${ var . certificate_subdomain_name_prefix } ${ terraform . workspace } "
216- api_gateway_full_domain_name = contains ([" prod" ], terraform. workspace ) ? " ${ var . certificate_subdomain_name_prefix } ${ var . domain } " : " ${ var . certificate_subdomain_name_prefix } ${ terraform . workspace } .${ var . domain } "
215+ api_gateway_subdomain_name = contains ([" prod" ], terraform. workspace ) ? " ${ var . certificate_subdomain_name_prefix } " : " ${ var . certificate_subdomain_name_prefix } ${ terraform . workspace } "
216+ api_gateway_full_domain_name = contains ([" prod" ], terraform. workspace ) ? " ${ var . certificate_subdomain_name_prefix } ${ var . domain } " : " ${ var . certificate_subdomain_name_prefix } ${ terraform . workspace } .${ var . domain } "
217217 mtls_api_gateway_full_domain_name = contains ([" prod" ], terraform. workspace ) ? " mtls.${ var . domain } " : " mtls.${ terraform . workspace } .${ var . domain } "
218218
219219
You can’t perform that action at this time.
0 commit comments