Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jorgechato/terrateniente
a terraform base project with AWS
https://github.com/jorgechato/terrateniente
public terraform
Last synced: 27 days ago
JSON representation
a terraform base project with AWS
- Host: GitHub
- URL: https://github.com/jorgechato/terrateniente
- Owner: jorgechato
- Created: 2018-05-14T15:34:14.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-05-22T07:23:14.000Z (over 6 years ago)
- Last Synced: 2024-11-07T10:45:51.230Z (3 months ago)
- Topics: public, terraform
- Language: HCL
- Size: 5.86 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Terraform proof of concept
This repo is a terraform proof of concept to work with terraform and build a VPC
with subnets and EC2 instances in AWS.The project is splitted into 3 branches, each branch is an iteration of the
project.- The first step is to set the project and the base components of it (master)
- The modularity folder structure is made in the (day2)
- The final components and structure live in the (final) branch## Final project structure
```zsh
.
├── ec2.tf
├── jorgechato
│ └── eu-west-1
│ └── dev
│ ├── network.tf
│ ├── provider.tf
│ ├── remote_source.tf
│ ├── variables.tf
│ └── variables.tfvars
├── modules
│ └── vpc
│ ├── outputs.tf
│ ├── variables.tf
│ └── vpc.tf
└── provider.tf
```