diff options
author | pascalheraud <pascal.heraud@laroueverte.com> | 2015-12-10 09:21:46 +0100 |
---|---|---|
committer | Toshio Kuratomi <toshio@fedoraproject.org> | 2016-07-27 15:51:25 -0700 |
commit | 13b164791eb839c07f648dea3528e1180059155e (patch) | |
tree | 6edb42cffc35a0b7ad0dd6a11199df3699e140ff /cloud | |
parent | 6b91834d9ff1075d90da687a32f57a45833f69b7 (diff) | |
download | ansible-modules-extras-13b164791eb839c07f648dea3528e1180059155e.tar.gz |
Update ovh_ip_loadbalancing_backend.py
Diffstat (limited to 'cloud')
-rw-r--r-- | cloud/ovh/ovh_ip_loadbalancing_backend.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cloud/ovh/ovh_ip_loadbalancing_backend.py b/cloud/ovh/ovh_ip_loadbalancing_backend.py index 22bdeba9..f2e81baa 100644 --- a/cloud/ovh/ovh_ip_loadbalancing_backend.py +++ b/cloud/ovh/ovh_ip_loadbalancing_backend.py @@ -140,9 +140,9 @@ def main(): choices=['none', 'http', 'icmp', 'oco']), state=dict(default='present', choices=['present', 'absent']), endpoint=dict(required=True), - application_key=dict(required=True), - application_secret=dict(required=True), - consumer_key=dict(required=True), + application_key=dict(required=True, no_log=True), + application_secret=dict(required=True, no_log=True), + consumer_key=dict(required=True, no_log=True), timeout=dict(default=120, type='int') ) ) |