Skip to content
This repository was archived by the owner on May 2, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@ No modules.
| <a name="input_enable_lambda_endpoints"></a> [enable\_lambda\_endpoints](#input\_enable\_lambda\_endpoints) | Enable VPC endpoints for Lambda. | `bool` | `true` | no |
| <a name="input_enable_s3_endpoints"></a> [enable\_s3\_endpoints](#input\_enable\_s3\_endpoints) | Enable VPC endpoints for S3. | `bool` | `true` | no |
| <a name="input_enable_sagemaker_endpoints"></a> [enable\_sagemaker\_endpoints](#input\_enable\_sagemaker\_endpoints) | Enable VPC endpoints for SageMaker. | `bool` | `true` | no |
| <a name="input_enable_secretsmanager_endpoints"></a> [enable\_secretsmanager\_endpoints](#input\_enable\_secretsmanager\_endpoints) | Enable VPC endpoints for SecretsManager. | `bool` | `true` | no |
| <a name="input_enable_sns_endpoints"></a> [enable\_sns\_endpoints](#input\_enable\_sns\_endpoints) | Enable VPC endpoints for SNS. | `bool` | `true` | no |
| <a name="input_enable_sqs_endpoints"></a> [enable\_sqs\_endpoints](#input\_enable\_sqs\_endpoints) | Enable VPC endpoints for SQS. | `bool` | `true` | no |
| <a name="input_enable_ssm_endpoints"></a> [enable\_ssm\_endpoints](#input\_enable\_ssm\_endpoints) | Enable VPC endpoints for SSM. | `bool` | `true` | no |
Expand Down
8 changes: 8 additions & 0 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,14 @@ locals {
tags = { Name = "sagemaker-runtime-vpc-endpoint" }
},

# SecretsManager
ssm = {
enabled = var.enable_secretsmanager_endpoints
service = "secretsmanager"
private_dns_enabled = true
tags = { Name = "secretsmanager-vpc-endpoint" }
},

# SNS

sns = {
Expand Down
6 changes: 6 additions & 0 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,12 @@ variable "enable_sagemaker_endpoints" {
default = true
}

variable "enable_secretsmanager_endpoints" {
type = bool
description = "Enable VPC endpoints for SecretsManager."
default = true
}

variable "enable_sns_endpoints" {
type = bool
description = "Enable VPC endpoints for SNS."
Expand Down