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
In every module, auth_kind parameter is set to required=true, although this is not true since it has a fallback to the env var GCP_AUTH_KIND.
auth_kind
GCP_AUTH_KIND
It should then be false since modules can be called without that parameter specified.
Additionally, ansible-lint list it as a fatal error in strict mode:
WARNING Listing 2 violation(s) that are fatal ansible/roles/build_vm_windows_image/tasks/main.yml:70: args[module]: missing required arguments: auth_kind (warning) ansible/roles/build_vm_windows_image/tasks/main.yml:85: args[module]: missing required arguments: auth_kind (warning)
What do you think ?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
SUMMARY
In every module,
auth_kind
parameter is set to required=true, although this is not true since it has a fallback to the env varGCP_AUTH_KIND
.It should then be false since modules can be called without that parameter specified.
Additionally, ansible-lint list it as a fatal error in strict mode:
What do you think ?
The text was updated successfully, but these errors were encountered: