Skip to content

Commit

Permalink
doc
Browse files Browse the repository at this point in the history
  • Loading branch information
mostafa6765 committed Jun 30, 2024
1 parent 9ad860e commit 53660ba
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 1 deletion.
36 changes: 35 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,35 @@
# terraform-terragrunt-aws-project
# terraform-terragrunt-aws-project

# File structure

```bash
terrafrom-terragrunt-aws-project
├── terragrunt.hcl
├── modules
│ ├── subnet
│ │ ├── main.tf
│ │ ├── output.tf
│ │ └── variables.tf
│ └── vpc
│ ├── main.tf
│ ├── output.tf
│ └── variables.tf
├── terraform
│ ├── common
│ │ └── common-resources.tf
│ ├── stage
│ │ ├── modules (symlink with root modules)
│ │ ├── common-*.tf (symlink with common)
│ │ ├── main.tf
│ │ └── variables.tf
│ └── prod
│ ├── modules (symlink with root modules)
│ ├── common-*.tf (symlink with common)
│ ├── main.tf
│ └── variables.tf
└── environment
├── stage
│ └── terragrunt.hcl
└── prod
└── terragrunt.hcl
```
Empty file added terraform/prod/main.tf
Empty file.

0 comments on commit 53660ba

Please sign in to comment.