Hello everyone, I’m new in Terragrunt
please help me to find a proper solution.
–
I have following structure:
link/
├── zone-one
│ ├── provider.tf
│ └── terragrunt.hcl
├── zone-two
│ ├── provider.tf
│ └── terragrunt.hcl
└── init.hcl
I would like to use outputs of zone-two
to use it with zone-one
is it achievable somehow with terragrunt or not?
Currently I manually paste the output of zone-one
to init.hcl
file, and only after I’m running zone-one
.
Ideally I would like to run terragrunt run-all apply
without thinking of passing output between this two directories