Skip to content

Instantly share code, notes, and snippets.

@fulgorek
Forked from kwilczynski/structure.txt
Created May 10, 2016 03:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fulgorek/be5661ea328199082c3c1a7e07332f4c to your computer and use it in GitHub Desktop.
Save fulgorek/be5661ea328199082c3c1a7e07332f4c to your computer and use it in GitHub Desktop.
Terraform structure
.
├── common
│   └── s3-buckets
├── environments
│   ├── ci
│   ├── management
│   │   ├── files
│   │   │   └── user-data.sh
│   │   ├── templates
│   │   │   └── script.sh.tpl
│   │   ├── iam.tf
│   │   ├── instances.tf
│   │   ├── key-pairs.tf
│   │   ├── main.tf
│   │   ├── outputs.tf
│   │   ├── peering.tf
│   │   ├── provider.tf
│   │   ├── security-groups.tf
│   │   ├── terraform.tfvars
│   │   ├── terraform.tfvars.sample
│   │   └── variables.tf
│   ├── production
│   └── staging
├── modules
│   └── network
│   ├── bastion
│   │   ├── main.tf
│   │   ├── outputs.tf
│   │   └── variables.tf
│   ├── nat
│   │   ├── main.tf
│   │   ├── outputs.tf
│   │   └── variables.tf
│   ├── network-acls
│   │   ├── main.tf
│   │   ├── outputs.tf
│   │   └── variables.tf
│   ├── private-subnet
│   │   ├── main.tf
│   │   ├── outputs.tf
│   │   └── variables.tf
│   ├── public-subnet
│   │   ├── main.tf
│   │   ├── outputs.tf
│   │   └── variables.tf
│   ├── vpc
│   │   ├── main.tf
│   │   ├── outputs.tf
│   │   └── variables.tf
│   ├── main.tf
│   ├── outputs.tf
│   └── variables.tf
├── .editorconfig
├── .gitattributes
├── .gitignore
├── .rubocop
├── AUTHORS
├── CHANGELOG.md
├── COPYRIGHT
├── Gemfile
├── LICENSE
├── Makefile
├── README.md
└── Rakefile
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment