Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/denis256/terragrunt-test-1815


https://github.com/denis256/terragrunt-test-1815

Last synced: 27 days ago
JSON representation

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"

```