https://github.com/davidjeddy/aws_terraform_lambda_vpc_endpoint
Example of an AWS VPC with a private subnet using a VPC endpoint leveraging Terraform for IaC.
https://github.com/davidjeddy/aws_terraform_lambda_vpc_endpoint
Last synced: 3 months ago
JSON representation
Example of an AWS VPC with a private subnet using a VPC endpoint leveraging Terraform for IaC.
- Host: GitHub
- URL: https://github.com/davidjeddy/aws_terraform_lambda_vpc_endpoint
- Owner: davidjeddy
- License: other
- Created: 2020-03-31T02:12:22.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-04-01T02:17:42.000Z (about 5 years ago)
- Last Synced: 2025-01-16T11:33:20.025Z (5 months ago)
- Language: HCL
- Size: 27.3 KB
- Stars: 5
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING_GUIDELINES.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Security: SECURITY.md
- Support: SUPPORT.md
- Roadmap: ROADMAP.md
Awesome Lists containing this project
README
# AWS VPC endpoints via Terraform
## Description
An example implimentation of AWS VPC endpoints implimented via Terraform.
## Functionality
Connect an AWS Lambda in a private subnet to AWs services that requires publicly routable access; such as SQS, SNS, SES, etc.
## Table of Contents
- [Badges](#Badges)
- [Description](#Description)
- [Functionality](#Functionality)
- [Table of Contents](#Table%20of%20Contents)
- [Contributing](#Contributing)
- [Code of Conduct](#Code%20of%20Conduct)
- [Contributor Guidelines](#Contributing%20Guidelines)
- [Development Documentation](#DEVDOCS)
- [Requirements](#Requirements)
- [How to](#How%20to%20)
- [Obtain](#Obtain)
- [Configure](#Configure)
- [Run](#Run)
- [Stop](#Stop)
- [Versioning](#Versioning)
- [Additonal Information](#Additonal%20Information)## Contributing
### Code of Conduct
Please see [CODE_OF_CONDUCT.md](./CODE_OF_CONDUCT.md).
### Contributing Guidelines
Please see [CONTRIBUTING_GUIDELINES.md](./CONTRIBUTING_GUIDELINES.md).
### Development Documentation
Please see [DEVDOCS.md](./DEVDOCS.md).
## Requirements
- AWS account
- Linux POSIX compatible terminal
- Terraform >= 0.12.24## How to
### Obtain
```sh
git clone https://github.com/davidjeddy/aws_terraform_lambda_vpc_endpoint.git
```### Configure
```sh
cp example.terraform.tfvars terraform.tfvars
# open terraform.tfvars in a text edit
# Replace YOUR_ACCT_ID with your AWS account id
```### Run
```sh
terraform plan
terraform apply
# enter [yes] when prompted
```### Stop
```sh
terraform destroy
# enter [yes] when prompted
```## Versioning
This project follows [SemVer 2.0](https://semver.org/).
```quote
Given a version number MAJOR.MINOR.PATCH, increment the:1. MAJOR version when you make incompatible API changes,
2. MINOR version when you add functionality in a backwards compatible manner, and
3. PATCH version when you make backwards compatible bug fixes.Additional labels for pre-release and build metadata are available as extensions to the MAJOR.MINOR.PATCH format.
```## Contributors
## Additonal Information
- Adding visual aids to any / all the above sections above is recommended.
- [Contributes](##Contributors) sources from [all-contributors](https://github.com/all-contributors/all-contributors).
- [ROADMAP](./ROADMAP.md) example from [all-contributors/all-contributors ](https://github.com/all-contributors/all-contributors/blob/master/MAINTAINERS.md).
- Based on [README Maturity Model](https://github.com/LappleApple/feedmereadmes/blob/master/README-maturity-model.md); strive for a Level 5 `Product-oriented README`.
- This Code of Conduct is adapted from the [Contributor Covenant](https://www.contributor-covenant.org), version 2.0, available at https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
- [CONTRIBUTING.md](./CONTRIBUTING.md) is based on the [Ruby on Rails Contributing](https://github.com/rails/rails/blob/master/CONTRIBUTING.md) document, credit is due to them.
- [LICENSE](./LICENSE.md) sources from:
- [https://choosealicense.com](https://choosealicense.com)
- [https://en.wikipedia.org/wiki/All_rights_reserved](https://en.wikipedia.org/wiki/All_rights_reserved)
- [SECURITY.md](./SECURITY.md) based from [ISARA Radiate Security Solution Suite 2.0 Security Issues](https://github.com/isaracorp/Toolkit-Samples/edit/master/SECURITY.md).