Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jen20/pulumi-aws-vpc
Good-Practice AWS VPC Component for Pulumi
https://github.com/jen20/pulumi-aws-vpc
Last synced: 29 days ago
JSON representation
Good-Practice AWS VPC Component for Pulumi
- Host: GitHub
- URL: https://github.com/jen20/pulumi-aws-vpc
- Owner: jen20
- License: mpl-2.0
- Created: 2018-07-16T04:13:42.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2021-08-27T18:49:50.000Z (over 3 years ago)
- Last Synced: 2024-10-29T03:08:00.189Z (about 1 month ago)
- Language: Python
- Homepage:
- Size: 186 KB
- Stars: 52
- Watchers: 5
- Forks: 19
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
- awesome-pulumi - `jen20/pulumi-aws-vpc` - Node.js and Python implementation of the AWS VPC Best-Practice Guidelines (Libraries / Miscellaneous)
README
# AWS VPC Component for Pulumi
_This is a project containing components for use with [Pulumi][pulumi], a tool for provisioning cloud infrastructure
based on a description written with general purpose programming languages._This project provides a Pulumi component named `Vpc`, which can be used to create an [AWS VPC][vpc] based on some of the
good practices described by the AWS documentation, posts made by AWS solutions engineers, and the experience of the
package author, contributors and reviewers.For example, address space is assigned in an asymetric manner between public and private subnets, as described in the
article [Practical VPC Design][practicalvpcdesign]. VPC Endpoints for S3 and DynamoDB can optionally be configured, and
flow logging can be enabled if desired.The `Vpc` component is implemented in both Node.js (using TypeScript) and Python 3, with identical functionality and a
very similar API between the two languages. Both support Pulumi v2.1.0 and above.This package does not currently support entirely private VPCs (i.e. those without an internet gateway attached), though
it is intended to support such designs in future.A [CHANGELOG][changelog] is maintained for this project.
## Installation
### Node.js
```shell
$ npm install --save '@jen20/pulumi-aws-vpc'
```### Python
```shell
$ pip3 install 'jen20_pulumi_aws_vpc'
```## Examples
An example of the usage in a Pulumi program of each component is available:
- [Node.js][example-node]
- [Python][example-python]## License
This package is licensed under the [Mozilla Public License, v2.0][mpl2].
## Contributing
Please feel free to open issues or pull requests on GitHub!
[pulumi]: https://pulumi.io
[vpc]: https://aws.amazon.com/answers/networking/aws-single-vpc-design/
[practicalvpcdesign]: https://medium.com/aws-activate-startup-blog/practical-vpc-design-8412e1a18dcc
[pulumipreview]: https://pulumi.io/reference/cli/pulumi_preview.html
[mpl2]: https://www.mozilla.org/en-US/MPL/2.0/
[changelog]: https://github.com/jen20/pulumi-aws-vpc/blob/master/CHANGELOG.md
[example-node]: https://github.com/jen20/pulumi-aws-vpc/tree/master/examples/nodejs
[example-python]: https://github.com/jen20/pulumi-aws-vpc/tree/master/examples/python