Skip to content

vidbregar/terraform-project-structure

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 

Repository files navigation

Scalable and Organized Terraform Project Structure

Read the blog post here.

├── modules
│   ├── x
│   │   ├── main.tf
│   │   └── variables.tf
│   ├── y
│   │   ├── data.tf
│   │   ├── main.tf
│   │   └── variables.tf
│   └── z
│       ├── data.tf
│       ├── main.tf
│       └── variables.tf
└── services
    ├── x
    │   ├── development
    │   │   ├── main.tf
    │   │   └── terraform.tf
    │   ├── production
    │   │   ├── main.tf
    │   │   └── terraform.tf
    │   └── staging
    │       ├── main.tf
    │       └── terraform.tf
    ├── y
    │   ├── development
    │   │   ├── main.tf
    │   │   └── terraform.tf
    │   ├── production
    │   │   ├── main.tf
    │   │   └── terraform.tf
    │   └── staging
    │       ├── main.tf
    │       └── terraform.tf
    └── z
        ├── development
        │   ├── main.tf
        │   └── terraform.tf
        ├── production
        │   ├── europe-west1
        │   │   ├── main.tf
        │   │   └── terraform.tf
        │   └── us-west1
        │       ├── main.tf
        │       └── terraform.tf
        └── staging
            ├── main.tf
            └── terraform.tf

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages