https://github.com/zackproser/terraform-sandbox
A sandbox for playing around with AWS & Terraform
https://github.com/zackproser/terraform-sandbox
Last synced: about 2 months ago
JSON representation
A sandbox for playing around with AWS & Terraform
- Host: GitHub
- URL: https://github.com/zackproser/terraform-sandbox
- Owner: zackproser
- Created: 2020-07-18T16:04:40.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-07-20T12:54:37.000Z (almost 6 years ago)
- Last Synced: 2025-03-04T17:40:39.697Z (about 1 year ago)
- Language: HCL
- Size: 7.63 MB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
This is an evolving collection of examples around creating common AWS architectures with Terraform.
## Example #1 - EC2 Instance running public Docker container

Demonstrates creating:
* A VPC
* 2 subnets (public and private)
* An internet gateway
* A route table
* A route table association
* An ssh key pair
* An EC2 instance
* A user data script that runs on instance startup to pull and run our Golang web service
[View the code here](./ec2-database)