-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
274c863
commit 1681558
Showing
12 changed files
with
21 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# Blank | ||
# Terraform | ||
|
||
Simple blank project. If unsure, use this one | ||
Terraform project with Terragrunt enabled | ||
|
||
```shell | ||
make blank | ||
make terraform | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
{ | ||
"project_name": null, | ||
"description": "A blank project for getting started", | ||
"author": "Simon Emms <simon@simonemms.com>" | ||
"description": "A Terraform project with Terragrunt enabled", | ||
"author": "Simon Emms <simon@simonemms.com>", | ||
"module_name": null | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,3 +13,4 @@ Thumbs.db | |
**/.terraform/* | ||
*.tfstate | ||
*.tfstate.* | ||
**/.terragrunt-cache/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
....project_name }}/infrastructure/README.md → .../{{ cookiecutter.module_name }}/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Infrastructure | ||
# {{ cookiecutter.module_name }} | ||
|
||
<!-- BEGIN_TF_DOCS --> | ||
<!-- END_TF_DOCS --> |
File renamed without changes.
Empty file.
3 changes: 3 additions & 0 deletions
3
.../{{ cookiecutter.project_name }}/stacks/dev/{{ cookiecutter.module_name }}/terragrunt.hcl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
terraform { | ||
source = "../../../modules/${basename(get_terragrunt_dir())}" | ||
} |
3 changes: 3 additions & 0 deletions
3
...{{ cookiecutter.project_name }}/stacks/prod/{{ cookiecutter.module_name }}/terragrunt.hcl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
terraform { | ||
source = "../../../modules/${basename(get_terragrunt_dir())}" | ||
} |
3 changes: 3 additions & 0 deletions
3
...cookiecutter.project_name }}/stacks/staging/{{ cookiecutter.module_name }}/terragrunt.hcl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
terraform { | ||
source = "../../../modules/${basename(get_terragrunt_dir())}" | ||
} |
Empty file.