mirror of
https://github.com/ansible-collections/kubernetes.core.git
synced 2026-03-26 21:33:02 +00:00
helm_repository: Silence false no_log warning (#423)
helm_repository: Silence false no_log warning Depends-On: #424 SUMMARY Apply no_log=True to pass_credentials to silence false positive warning. Fixes: #412 Signed-off-by: Abhijeet Kasurde akasurde@redhat.com ISSUE TYPE Bugfix Pull Request COMPONENT NAME changelogs/fragments/412_pass_creds.yml plugins/modules/helm_repository.py Reviewed-by: Mike Graves <mgraves@redhat.com>
This commit is contained in:
@@ -228,7 +228,7 @@ def main():
|
||||
repo_state=dict(
|
||||
default="present", choices=["present", "absent"], aliases=["state"]
|
||||
),
|
||||
pass_credentials=dict(type="bool", default=False),
|
||||
pass_credentials=dict(type="bool", default=False, no_log=True),
|
||||
# Generic auth key
|
||||
host=dict(type="str", fallback=(env_fallback, ["K8S_AUTH_HOST"])),
|
||||
ca_cert=dict(
|
||||
|
||||
Reference in New Issue
Block a user