You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Expected behavior
Both terragrunt run-all plan and terragrunt plan should resolve dependency in the terraform block
Nice to have
Terminal output
Screenshots
Versions
Terragrunt version:
Terraform version:
Environment details (Ubuntu 20.04, Windows 10, etc.):
Additional context
terragrunt run-all plan
terragrunt run-all plan --terragrunt-working-dir=infrastructure/envs/qa/argocd
ERRO[0000] Error processing module at '/Users/benjefferies/source/github/VEV-platform-services/vev-infrastructure/infrastructure/envs/qa/argocd/terragrunt.hcl'. How this module was found: Terragrunt config file found in a subdirectory of infrastructure/envs/qa/argocd. Underlying error: /Users/benjefferies/source/github/VEV-platform-services/vev-infrastructure/infrastructure/envs/qa/argocd/terragrunt.hcl:51,12-22: Unknown variable; There is no variable named "dependency"., and 1 other diagnostic(s)
ERRO[0000] Unable to determine underlying exit code, so Terragrunt will exit with error code 1
terragrunt plan
terragrunt plan --terragrunt-working-dir=infrastructure/envs/qa/argocd
Initializing the backend...
Initializing provider plugins...
- Reusing previous version of hashicorp/null from the dependency lock file
- Using previously-installed hashicorp/null v3.2.1
Terraform has been successfully initialized!
You may now begin working with Terraform. Try running "terraform plan" to see
any changes that are required for your infrastructure. All Terraform commands
should now work.
If you ever set or change modules or backend configuration for Terraform,
rerun this command to reinitialize your working directory. If you forget, other
commands will detect it and remind you to do so if necessary.
Terraform used the selected providers to generate the following execution
plan. Resource actions are indicated with the following symbols:
+ create
Terraform will perform the following actions:
# null_resource.resource will be created
+ resource "null_resource" "resource" {
+ id = (known after apply)
+ triggers = {
+ "number" = "one"
}
}
Plan: 1 to add, 0 to change, 0 to destroy.
Changes to Outputs:
+ null_resource_id = (known after apply)
─────────────────────────────────────────────────────────────────────────────
Note: You didn't use the -out option to save this plan, so Terraform can't
guarantee to take exactly these actions if you run "terraform apply" now.
It looks like it was previously fixed here #1257 and this is possibly related #2298
The text was updated successfully, but these errors were encountered:
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for raising this issue.
Describe the bug
dependency
outputs not resolved in theterraform
block when usingterragrunt run-all plan
but works with aterragrunt plan
To Reproduce
terragrunt plan
terragrunt run-all plan
Expected behavior
Both
terragrunt run-all plan
andterragrunt plan
should resolvedependency
in theterraform
blockNice to have
Versions
Additional context
terragrunt run-all plan
terragrunt plan
It looks like it was previously fixed here #1257 and this is possibly related #2298
The text was updated successfully, but these errors were encountered: