We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Optional dependencies like Cloudflare Zero Trust or the DevOps dependencies are installed by Ansible with the local-exec provider.
The issue is that Terraform is executing them in parallel since they are optional and can't be linked with depends_onfor example.
depends_on
If multiple executions of apt or dpkg are run simultaneously, the first execution will lock the execution for the other commands (dpkg lock file).
apt
dpkg
The sequence of the optional dependencies installation needs to be changed by a single script with args or something else.
The text was updated successfully, but these errors were encountered:
timoa
No branches or pull requests
Optional dependencies like Cloudflare Zero Trust or the DevOps dependencies are installed by Ansible with the local-exec provider.
The issue is that Terraform is executing them in parallel since they are optional and can't be linked with
depends_on
for example.If multiple executions of
apt
ordpkg
are run simultaneously, the first execution will lock the execution for the other commands (dpkg lock file).The sequence of the optional dependencies installation needs to be changed by a single script with args or something else.
The text was updated successfully, but these errors were encountered: