Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/denis256/terragrunt-test-1815
https://github.com/denis256/terragrunt-test-1815
Last synced: 27 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/denis256/terragrunt-test-1815
- Owner: denis256
- Created: 2021-09-17T17:02:33.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-09-24T16:28:59.000Z (over 3 years ago)
- Last Synced: 2024-10-28T04:59:39.846Z (2 months ago)
- Language: HCL
- Size: 6.84 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Test repository for issue 1815
Directory structure:
```
.
├── applications
│ └── gateway
│ └── app1
│ ├── main.tf
│ └── terragrunt.hcl
├── README.md
└── shared
├── service-discovery-core
│ ├── main.tf
│ └── terragrunt.hcl
└── vpc
├── main.tf
└── terragrunt.hcl```
Test commands:
```
terragrunt --version
terragrunt run-all plan --terragrunt-non-interactive
terragrunt run-all apply --terragrunt-non-interactive
```Example
```
$ terragrunt --version
terragrunt version v0.32.2$ terragrunt run-all plan --terragrunt-non-interactive
...
Terraform has been successfully initialized!$ terragrunt run-all apply --terragrunt-non-interactive
Apply complete! Resources: 1 added, 0 changed, 0 destroyed.Outputs:
app_config_file = "namespace: namespace-in-vpc"
```