diff --git a/terraform/environments/analytical-platform-ingestion/environment-configuration.tf b/terraform/environments/analytical-platform-ingestion/environment-configuration.tf index c129b6a6aaf..0e2cfb01b7b 100644 --- a/terraform/environments/analytical-platform-ingestion/environment-configuration.tf +++ b/terraform/environments/analytical-platform-ingestion/environment-configuration.tf @@ -47,7 +47,7 @@ locals { transfer_image_version = "0.0.2" /* Target Buckets */ - target_buckets = ["dev-ingestion-testing"] + target_buckets = [] /* Transfer Server */ transfer_server_hostname = "sftp.ingestion.analytical-platform.service.justice.gov.uk" diff --git a/terraform/environments/analytical-platform-ingestion/vpc-endpoints.tf b/terraform/environments/analytical-platform-ingestion/vpc-endpoints.tf index 41abe6d52e6..b0a60bbff80 100644 --- a/terraform/environments/analytical-platform-ingestion/vpc-endpoints.tf +++ b/terraform/environments/analytical-platform-ingestion/vpc-endpoints.tf @@ -39,6 +39,15 @@ module "vpc_endpoints" { local.tags, { Name = format("%s-s3-vpc-endpoint", local.application_name) } ) - } + }, + secretsmanager = { + service = "secretsmanager" + service_type = "Interface" + private_dns_enabled = true + tags = merge( + local.tags, + { Name = format("%s-secretsmanager-vpc-endpoint", local.application_name) } + ) + }, } }