fix: remove no_log warnings with sensu_go libraries
This commit is contained in:
parent
632258e746
commit
7f915da61c
9 changed files with 10 additions and 9 deletions
|
@ -8,6 +8,7 @@ Which is based on [Keep A Changelog](http://keepachangelog.com/)
|
|||
### Fixed
|
||||
|
||||
- add compatibily with new sensu version
|
||||
- remove no_log warnings with sensu_go libraries
|
||||
|
||||
### Changed
|
||||
|
||||
|
|
|
@ -49,7 +49,7 @@ def main():
|
|||
'filters': { 'type': 'list', 'default': [] },
|
||||
'api_url': { 'type': 'str', 'default': 'http://127.0.0.1:8080' },
|
||||
'api_user': { 'type': 'str', 'default': 'admin' },
|
||||
'api_password': { 'type': 'str', 'default': 'P@ssw0rd!' },
|
||||
'api_password': { 'type': 'str', 'default': 'P@ssw0rd!', 'no_log': True },
|
||||
}
|
||||
module = AnsibleModule(argument_spec=fields)
|
||||
changed = True
|
||||
|
|
|
@ -80,7 +80,7 @@ def main():
|
|||
'options': { 'type': 'dict', 'default': {} },
|
||||
'api_url': { 'type': 'str', 'default': 'http://127.0.0.1:8080' },
|
||||
'api_user': { 'type': 'str', 'default': 'admin' },
|
||||
'api_password': { 'type': 'str', 'default': 'P@ssw0rd!' },
|
||||
'api_password': { 'type': 'str', 'default': 'P@ssw0rd!', 'no_log': True },
|
||||
'state': { 'type': 'str', 'default': 'present', 'choices': ['present', 'absent'] }
|
||||
}
|
||||
module = AnsibleModule(argument_spec=fields)
|
||||
|
|
|
@ -63,7 +63,7 @@ def main():
|
|||
'rules': { 'type': 'list', 'required': True },
|
||||
'api_url': { 'type': 'str', 'default': 'http://127.0.0.1:8080' },
|
||||
'api_user': { 'type': 'str', 'default': 'admin' },
|
||||
'api_password': { 'type': 'str', 'default': 'P@ssw0rd!' },
|
||||
'api_password': { 'type': 'str', 'default': 'P@ssw0rd!', 'no_log': True },
|
||||
'state': { 'type': 'str', 'default': 'present', 'choices': ['present', 'absent'] }
|
||||
}
|
||||
module = AnsibleModule(argument_spec=fields)
|
||||
|
|
|
@ -55,7 +55,7 @@ def main():
|
|||
'runtime_assets': { 'type': 'list', 'default': [] },
|
||||
'api_url': { 'type': 'str', 'default': 'http://127.0.0.1:8080' },
|
||||
'api_user': { 'type': 'str', 'default': 'admin' },
|
||||
'api_password': { 'type': 'str', 'default': 'P@ssw0rd!' },
|
||||
'api_password': { 'type': 'str', 'default': 'P@ssw0rd!', 'no_log': True },
|
||||
'state': { 'type': 'str', 'default': 'present', 'choices': ['present', 'absent'] }
|
||||
}
|
||||
module = AnsibleModule(argument_spec=fields)
|
||||
|
|
|
@ -56,7 +56,7 @@ def main():
|
|||
'options': { 'type': 'dict', 'default': {} },
|
||||
'api_url': { 'type': 'str', 'default': 'http://127.0.0.1:8080' },
|
||||
'api_user': { 'type': 'str', 'default': 'admin' },
|
||||
'api_password': { 'type': 'str', 'default': 'P@ssw0rd!' },
|
||||
'api_password': { 'type': 'str', 'default': 'P@ssw0rd!', 'no_log': True },
|
||||
'state': { 'type': 'str', 'default': 'present', 'choices': ['present', 'absent'] }
|
||||
}
|
||||
module = AnsibleModule(argument_spec=fields)
|
||||
|
|
|
@ -54,7 +54,7 @@ def main():
|
|||
'options': { 'type': 'dict', 'default': {} },
|
||||
'api_url': { 'type': 'str', 'default': 'http://127.0.0.1:8080' },
|
||||
'api_user': { 'type': 'str', 'default': 'admin' },
|
||||
'api_password': { 'type': 'str', 'default': 'P@ssw0rd!' },
|
||||
'api_password': { 'type': 'str', 'default': 'P@ssw0rd!', 'no_log': True },
|
||||
'state': { 'type': 'str', 'default': 'present', 'choices': ['present', 'absent'] }
|
||||
}
|
||||
module = AnsibleModule(argument_spec=fields)
|
||||
|
|
|
@ -31,7 +31,7 @@ def main():
|
|||
'name': { 'type': 'str', 'required': True },
|
||||
'api_url': { 'type': 'str', 'default': 'http://127.0.0.1:8080' },
|
||||
'api_user': { 'type': 'str', 'default': 'admin' },
|
||||
'api_password': { 'type': 'str', 'default': 'P@ssw0rd!' },
|
||||
'api_password': { 'type': 'str', 'default': 'P@ssw0rd!', 'no_log': True },
|
||||
'state': { 'type': 'str', 'default': 'present', 'choices': ['present', 'absent'] }
|
||||
}
|
||||
module = AnsibleModule(argument_spec=fields)
|
||||
|
|
|
@ -55,10 +55,10 @@ def main():
|
|||
fields = {
|
||||
'name': { 'type': 'str', 'required': True },
|
||||
'groups': { 'type': 'list', 'default': [] },
|
||||
'password': { 'type': 'str', 'default': None },
|
||||
'password': { 'type': 'str', 'default': None, 'no_log': True },
|
||||
'api_url': { 'type': 'str', 'default': 'http://127.0.0.1:8080' },
|
||||
'api_user': { 'type': 'str', 'default': 'admin' },
|
||||
'api_password': { 'type': 'str', 'default': 'P@ssw0rd!' },
|
||||
'api_password': { 'type': 'str', 'default': 'P@ssw0rd!', 'no_log': True },
|
||||
'state': { 'type': 'str', 'default': 'present', 'choices': ['present', 'absent'] }
|
||||
}
|
||||
module = AnsibleModule(argument_spec=fields)
|
||||
|
|
Loading…
Reference in a new issue