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
Describe the bug Running the command ./tads install-dependencies generates the following error:
./tads install-dependencies
TASK [Install Terraform (linux)] *************************************************************************************************** fatal: [127.0.0.1]: FAILED! => {"changed": false, "msg": "Unsupported parameters for (ansible.legacy.command) module: warn. Supported parameters include: _raw_params, _uses_shell, argv, chdir, creates, executable, removes, stdin, stdin_add_newline, strip_empty_ends."}
To Reproduce Steps to reproduce the behavior:
Expected behavior Dependencies are installed without error.
Environment (please complete the following information):
Additional context Appears to be related to this StackOverflow question.
Following changes fixes the issue:
diff --git a/ansible/install-dependencies.yml b/ansible/install-dependencies.yml index 619743d..6b828a5 100644 --- a/ansible/install-dependencies.yml +++ b/ansible/install-dependencies.yml @@ -47,7 +47,7 @@ TERRAFORM_VERSION: 0.12.12 args: creates: ~/.local/bin/terraform - warn: False + # warn: False when: ansible_facts['os_family'] != "Darwin" - name: Install Terraform Homebrew Tap (Mac)
The text was updated successfully, but these errors were encountered:
thomvaill
No branches or pull requests
Describe the bug
Running the command
./tads install-dependencies
generates the following error:To Reproduce
Steps to reproduce the behavior:
Expected behavior
Dependencies are installed without error.
Environment (please complete the following information):
Additional context
Appears to be related to this StackOverflow question.
Following changes fixes the issue:
The text was updated successfully, but these errors were encountered: