mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-26 22:51:23 -07:00
Add port argument for bigsuds (#15434)
This patch adds the port argument as a valid parameter to the f5_spec. This argument is supported in bigsuds version 1.0.4 and greater, so this patch uses the __version__ variable of the bigsuds module to determine when the port value should be honored by the module.
This commit is contained in:
parent
f576082949
commit
a685fa5543
1 changed files with 9 additions and 6 deletions
|
@ -43,6 +43,7 @@ def f5_argument_spec():
|
||||||
user=dict(type='str', required=True),
|
user=dict(type='str', required=True),
|
||||||
password=dict(type='str', aliases=['pass', 'pwd'], required=True, no_log=True),
|
password=dict(type='str', aliases=['pass', 'pwd'], required=True, no_log=True),
|
||||||
validate_certs = dict(default='yes', type='bool'),
|
validate_certs = dict(default='yes', type='bool'),
|
||||||
|
server_port = dict(type='int', default=443, required=False),
|
||||||
state = dict(type='str', default='present', choices=['present', 'absent']),
|
state = dict(type='str', default='present', choices=['present', 'absent']),
|
||||||
partition = dict(type='str', default='Common')
|
partition = dict(type='str', default='Common')
|
||||||
)
|
)
|
||||||
|
@ -57,12 +58,16 @@ def f5_parse_arguments(module):
|
||||||
if not hasattr(ssl, 'SSLContext'):
|
if not hasattr(ssl, 'SSLContext'):
|
||||||
module.fail_json(msg='bigsuds does not support verifying certificates with python < 2.7.9. Either update python or set validate_certs=False on the task')
|
module.fail_json(msg='bigsuds does not support verifying certificates with python < 2.7.9. Either update python or set validate_certs=False on the task')
|
||||||
|
|
||||||
return (module.params['server'],module.params['user'],module.params['password'],module.params['state'],module.params['partition'],module.params['validate_certs'])
|
return (module.params['server'],module.params['user'],module.params['password'],module.params['state'],module.params['partition'],module.params['validate_certs'],module.params['server_port'])
|
||||||
|
|
||||||
def bigip_api(bigip, user, password, validate_certs):
|
def bigip_api(bigip, user, password, validate_certs, port=443):
|
||||||
try:
|
try:
|
||||||
# bigsuds >= 1.0.3
|
if bigsuds.__version__ >= '1.0.4':
|
||||||
api = bigsuds.BIGIP(hostname=bigip, username=user, password=password, verify=validate_certs)
|
api = bigsuds.BIGIP(hostname=bigip, username=user, password=password, verify=validate_certs, port=port)
|
||||||
|
elif bigsuds.__version__ == '1.0.3':
|
||||||
|
api = bigsuds.BIGIP(hostname=bigip, username=user, password=password, verify=validate_certs)
|
||||||
|
else:
|
||||||
|
api = bigsuds.BIGIP(hostname=bigip, username=user, password=password)
|
||||||
except TypeError:
|
except TypeError:
|
||||||
# bigsuds < 1.0.3, no verify param
|
# bigsuds < 1.0.3, no verify param
|
||||||
if validate_certs:
|
if validate_certs:
|
||||||
|
@ -92,5 +97,3 @@ def fq_list_names(partition,list_names):
|
||||||
if list_names is None:
|
if list_names is None:
|
||||||
return None
|
return None
|
||||||
return map(lambda x: fq_name(partition,x),list_names)
|
return map(lambda x: fq_name(partition,x),list_names)
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue