Skip to content

Commit

Permalink
🔧 Add Secrets Manager VPC Endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
Gary-H9 committed Apr 2, 2024
1 parent b613bcc commit 3acaf90
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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) }
)
},
}
}

0 comments on commit 3acaf90

Please sign in to comment.