-
Notifications
You must be signed in to change notification settings - Fork 46
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using a container image avoids use external tools #36
Comments
It is possible to run custom pre exec job with:
@denis256 With (now deleted) v1.0.11 I couldn't install repository packages with
Thank you! |
Thank you, I didn't know about that option, but does it make sense? I'm using terragrunt-action to minimize coding and avoid installing manually terragrunt and terraform, but I can't use Azure action to install PD: This is not a bug anymore, this is more a proposal |
I am running into a simmilar issue. Implementing a setup terragrunt would help a lot because we would have the control what context is used. |
Similar issue with me as well. |
I got permission denied for the following.
|
Adding INPUT_PRE_EXEC_0 still results in the same error. Has anyone found the solution? |
in my projects, I use
|
IMO, the core issue is that the action is using Docker to execute the commands, so that How would you feel about removing the docker requirement and instead just install via |
It is common that terragrunt/terraform requires external tools like
az cli
oraws cli
, however the docker image does not have them (and probably shouldn't).This is at this job that checkouts code, log into azure and tries to run terragrunt:
The text was updated successfully, but these errors were encountered: