diff options
author | Tim Rupp <caphrim007@gmail.com> | 2016-02-01 16:27:09 -0800 |
---|---|---|
committer | Tim Rupp <caphrim007@gmail.com> | 2016-02-01 16:27:09 -0800 |
commit | 56a517b054e8b24e23c6781c081db31af3fb2ae7 (patch) | |
tree | fea4e56a142bcd3d8ae87219694eaff80f8c104d /network | |
parent | bec32094ae633c109bf3d373507bce06f6d96ced (diff) | |
download | ansible-modules-extras-56a517b054e8b24e23c6781c081db31af3fb2ae7.tar.gz |
Fixes missing validate_certs parameter
The bigip_api method was changed in the module_utils function definition
to include the validate_certs option but the bigip_virtual_server module
was not updated accordingly. This patch updates the method so that the
error message below is not returned to the user
received exception: bigip_api() takes exactly 4 arguments (3 given)
Diffstat (limited to 'network')
-rw-r--r-- | network/f5/bigip_virtual_server.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/network/f5/bigip_virtual_server.py b/network/f5/bigip_virtual_server.py index aebe2673..26772f4b 100644 --- a/network/f5/bigip_virtual_server.py +++ b/network/f5/bigip_virtual_server.py @@ -392,7 +392,7 @@ def main(): module.fail_json(msg="valid ports must be in range 1 - 65535") try: - api = bigip_api(server, user, password) + api = bigip_api(server, user, password, validate_certs) result = {'changed': False} # default if state == 'absent': |