mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-05 18:23:09 +00:00
Update bigip_api method to use variable name server
This commit is contained in:
committed by
Matt Clay
parent
6681a5b386
commit
21425f36ef
@@ -80,8 +80,8 @@ except ImportError:
|
||||
else:
|
||||
bigsuds_found = True
|
||||
|
||||
def bigip_api(bigip, user, password):
|
||||
api = bigsuds.BIGIP(hostname=bigip, username=user, password=password)
|
||||
def bigip_api(server, user, password):
|
||||
api = bigsuds.BIGIP(hostname=server, username=user, password=password)
|
||||
return api
|
||||
|
||||
def get_wide_ip_lb_method(api, wide_ip):
|
||||
|
||||
Reference in New Issue
Block a user