An open API service indexing awesome lists of open source software.

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.

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).