mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
A10 module improvements
* moved common code to an module_util snippet * rewrote logic to make each module idempotent * added new capabilities like the write_config option
This commit is contained in:
parent
7fbdbcdec7
commit
70ff6d35aa
5 changed files with 752 additions and 584 deletions
103
lib/ansible/module_utils/a10.py
Normal file
103
lib/ansible/module_utils/a10.py
Normal file
|
@ -0,0 +1,103 @@
|
||||||
|
# This code is part of Ansible, but is an independent component.
|
||||||
|
# This particular file snippet, and this file snippet only, is BSD licensed.
|
||||||
|
# Modules you write using this snippet, which is embedded dynamically by Ansible
|
||||||
|
# still belong to the author of the module, and may assign their own license
|
||||||
|
# to the complete work.
|
||||||
|
#
|
||||||
|
# Copyright (c), Michael DeHaan <michael.dehaan@gmail.com>, 2012-2013
|
||||||
|
# All rights reserved.
|
||||||
|
#
|
||||||
|
# Redistribution and use in source and binary forms, with or without modification,
|
||||||
|
# are permitted provided that the following conditions are met:
|
||||||
|
#
|
||||||
|
# * Redistributions of source code must retain the above copyright
|
||||||
|
# notice, this list of conditions and the following disclaimer.
|
||||||
|
# * Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
# this list of conditions and the following disclaimer in the documentation
|
||||||
|
# and/or other materials provided with the distribution.
|
||||||
|
#
|
||||||
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
||||||
|
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||||
|
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
||||||
|
# IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
||||||
|
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
||||||
|
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||||
|
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||||
|
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
|
||||||
|
# USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
|
AXAPI_PORT_PROTOCOLS = {
|
||||||
|
'tcp': 2,
|
||||||
|
'udp': 3,
|
||||||
|
}
|
||||||
|
|
||||||
|
AXAPI_VPORT_PROTOCOLS = {
|
||||||
|
'tcp': 2,
|
||||||
|
'udp': 3,
|
||||||
|
'fast-http': 9,
|
||||||
|
'http': 11,
|
||||||
|
'https': 12,
|
||||||
|
}
|
||||||
|
|
||||||
|
def a10_argument_spec():
|
||||||
|
return dict(
|
||||||
|
host=dict(type='str', required=True),
|
||||||
|
username=dict(type='str', aliases=['user', 'admin'], required=True),
|
||||||
|
password=dict(type='str', aliases=['pass', 'pwd'], required=True, no_log=True),
|
||||||
|
write_config=dict(type='bool', default=False)
|
||||||
|
)
|
||||||
|
|
||||||
|
def axapi_failure(result):
|
||||||
|
if 'response' in result and result['response'].get('status') == 'fail':
|
||||||
|
return True
|
||||||
|
return False
|
||||||
|
|
||||||
|
def axapi_call(module, url, post=None):
|
||||||
|
'''
|
||||||
|
Returns a datastructure based on the result of the API call
|
||||||
|
'''
|
||||||
|
rsp, info = fetch_url(module, url, data=post)
|
||||||
|
if not rsp or info['status'] >= 400:
|
||||||
|
module.fail_json(msg="failed to connect (status code %s), error was %s" % (info['status'], info.get('msg', 'no error given')))
|
||||||
|
try:
|
||||||
|
raw_data = rsp.read()
|
||||||
|
data = json.loads(raw_data)
|
||||||
|
except ValueError:
|
||||||
|
# at least one API call (system.action.write_config) returns
|
||||||
|
# XML even when JSON is requested, so do some minimal handling
|
||||||
|
# here to prevent failing even when the call succeeded
|
||||||
|
if 'status="ok"' in raw_data.lower():
|
||||||
|
data = {"response": {"status": "OK"}}
|
||||||
|
else:
|
||||||
|
data = {"response": {"status": "fail", "err": {"msg": raw_data}}}
|
||||||
|
except:
|
||||||
|
module.fail_json(msg="could not read the result from the host")
|
||||||
|
finally:
|
||||||
|
rsp.close()
|
||||||
|
return data
|
||||||
|
|
||||||
|
def axapi_authenticate(module, base_url, username, password):
|
||||||
|
url = '%s&method=authenticate&username=%s&password=%s' % (base_url, username, password)
|
||||||
|
result = axapi_call(module, url)
|
||||||
|
if axapi_failure(result):
|
||||||
|
return module.fail_json(msg=result['response']['err']['msg'])
|
||||||
|
sessid = result['session_id']
|
||||||
|
return base_url + '&session_id=' + sessid
|
||||||
|
|
||||||
|
def axapi_enabled_disabled(flag):
|
||||||
|
'''
|
||||||
|
The axapi uses 0/1 integer values for flags, rather than strings
|
||||||
|
or booleans, so convert the given flag to a 0 or 1. For now, params
|
||||||
|
are specified as strings only so thats what we check.
|
||||||
|
'''
|
||||||
|
if flag == 'enabled':
|
||||||
|
return 1
|
||||||
|
else:
|
||||||
|
return 0
|
||||||
|
|
||||||
|
def axapi_get_port_protocol(protocol):
|
||||||
|
return AXAPI_PORT_PROTOCOLS.get(protocol.lower(), None)
|
||||||
|
|
||||||
|
def axapi_get_vport_protocol(protocol):
|
||||||
|
return AXAPI_VPORT_PROTOCOLS.get(protocol.lower(), None)
|
||||||
|
|
|
@ -24,16 +24,13 @@ along with Ansible. If not, see <http://www.gnu.org/licenses/>.
|
||||||
DOCUMENTATION = '''
|
DOCUMENTATION = '''
|
||||||
---
|
---
|
||||||
module: a10_server
|
module: a10_server
|
||||||
version_added: 1.0
|
version_added: 1.8
|
||||||
short_description: Manage A10 Networks AX/SoftAX/Thunder/vThunder devices
|
short_description: Manage A10 Networks AX/SoftAX/Thunder/vThunder devices
|
||||||
description:
|
description:
|
||||||
- Manage slb server objects on A10 Networks devices via aXAPI
|
- Manage slb server objects on A10 Networks devices via aXAPI
|
||||||
author: Mischa Peters
|
author: Mischa Peters
|
||||||
notes:
|
notes:
|
||||||
- Requires A10 Networks aXAPI 2.1
|
- Requires A10 Networks aXAPI 2.1
|
||||||
requirements:
|
|
||||||
- urllib2
|
|
||||||
- re
|
|
||||||
options:
|
options:
|
||||||
host:
|
host:
|
||||||
description:
|
description:
|
||||||
|
@ -70,27 +67,23 @@ options:
|
||||||
default: null
|
default: null
|
||||||
aliases: ['ip', 'address']
|
aliases: ['ip', 'address']
|
||||||
choices: []
|
choices: []
|
||||||
server_port:
|
|
||||||
description:
|
|
||||||
- slb server port
|
|
||||||
required: false
|
|
||||||
default: null
|
|
||||||
aliases: ['port']
|
|
||||||
choices: []
|
|
||||||
server_protocol:
|
|
||||||
description:
|
|
||||||
- slb server protocol
|
|
||||||
required: false
|
|
||||||
default: null
|
|
||||||
aliases: ['proto', 'protocol']
|
|
||||||
choices: ['tcp', 'udp']
|
|
||||||
server_status:
|
server_status:
|
||||||
description:
|
description:
|
||||||
- slb server status
|
- slb virtual server status
|
||||||
required: false
|
required: false
|
||||||
default: enabled
|
default: enable
|
||||||
aliases: ['status']
|
aliases: ['status']
|
||||||
choices: ['enable', 'disable']
|
choices: ['enabled', 'disabled']
|
||||||
|
server_ports:
|
||||||
|
description:
|
||||||
|
- A list of ports to create for the server. Each list item should be a
|
||||||
|
dictionary which specifies the C(port:) and C(protocol:), but can also optionally
|
||||||
|
specify the C(status:). See the examples below for details. This parameter is
|
||||||
|
required when C(state) is C(present).
|
||||||
|
required: false
|
||||||
|
default: null
|
||||||
|
aliases: []
|
||||||
|
choices: []
|
||||||
state:
|
state:
|
||||||
description:
|
description:
|
||||||
- create, update or remove slb server
|
- create, update or remove slb server
|
||||||
|
@ -102,124 +95,175 @@ options:
|
||||||
|
|
||||||
EXAMPLES = '''
|
EXAMPLES = '''
|
||||||
# Create a new server
|
# Create a new server
|
||||||
ansible host -m a10_server -a "host=a10adc.example.com username=axapiuser password=axapipass server_name=realserver1 server_ip=192.168.1.23"
|
- a10_server:
|
||||||
|
host: a10.mydomain.com
|
||||||
|
username: myadmin
|
||||||
|
password: mypassword
|
||||||
|
server: test
|
||||||
|
server_ip: 1.1.1.100
|
||||||
|
server_ports:
|
||||||
|
- port_num: 8080
|
||||||
|
protocol: tcp
|
||||||
|
- port_num: 8443
|
||||||
|
protocol: TCP
|
||||||
|
|
||||||
# Add a port
|
|
||||||
ansible host -m a10_server -a "host=a10adc.example.com username=axapiuser password=axapipass server_name=realserver1 server_port=80 server_protocol=tcp"
|
|
||||||
|
|
||||||
# Disable a server
|
|
||||||
ansible host -m a10_server -a "host=a10adc.example.com username=axapiuser password=axapipass server_name=realserver1 server_status=disable"
|
|
||||||
'''
|
'''
|
||||||
|
|
||||||
import urllib2
|
VALID_PORT_FIELDS = ['port_num', 'protocol', 'status']
|
||||||
|
|
||||||
|
def validate_ports(module, ports):
|
||||||
|
for item in ports:
|
||||||
|
for key in item:
|
||||||
|
if key not in VALID_PORT_FIELDS:
|
||||||
|
module.fail_json(msg="invalid port field (%s), must be one of: %s" % (key, ','.join(VALID_PORT_FIELDS)))
|
||||||
|
|
||||||
def axapi_call(url, post=None):
|
# validate the port number is present and an integer
|
||||||
result = urllib2.urlopen(url, post).read()
|
if 'port_num' in item:
|
||||||
return result
|
try:
|
||||||
|
item['port_num'] = int(item['port_num'])
|
||||||
|
except:
|
||||||
|
module.fail_json(msg="port_num entries in the port definitions must be integers")
|
||||||
|
else:
|
||||||
|
module.fail_json(msg="port definitions must define the port_num field")
|
||||||
|
|
||||||
|
# validate the port protocol is present, and convert it to
|
||||||
|
# the internal API integer value (and validate it)
|
||||||
|
if 'protocol' in item:
|
||||||
|
protocol = axapi_get_port_protocol(item['protocol'])
|
||||||
|
if not protocol:
|
||||||
|
module.fail_json(msg="invalid port protocol, must be one of: %s" % ','.join(AXAPI_PORT_PROTOCOLS))
|
||||||
|
else:
|
||||||
|
item['protocol'] = protocol
|
||||||
|
else:
|
||||||
|
module.fail_json(msg="port definitions must define the port protocol (%s)" % ','.join(AXAPI_PORT_PROTOCOLS))
|
||||||
|
|
||||||
def axapi_authenticate(base_url, user, pwd):
|
# convert the status to the internal API integer value
|
||||||
url = base_url + '&method=authenticate&username=' + user + \
|
if 'status' in item:
|
||||||
'&password=' + pwd
|
item['status'] = axapi_enabled_disabled(item['status'])
|
||||||
result = json.loads(axapi_call(url))
|
else:
|
||||||
if 'response' in result:
|
item['status'] = 1
|
||||||
return module.fail_json(msg=result['response']['err']['msg'])
|
|
||||||
sessid = result['session_id']
|
|
||||||
return base_url + '&session_id=' + sessid
|
|
||||||
|
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
global module
|
argument_spec = a10_argument_spec()
|
||||||
module = AnsibleModule(
|
argument_spec.update(url_argument_spec())
|
||||||
argument_spec=dict(
|
argument_spec.update(
|
||||||
host=dict(type='str', required=True),
|
dict(
|
||||||
username=dict(type='str', aliases=['user', 'admin'],
|
state=dict(type='str', default='present', choices=['present', 'absent']),
|
||||||
required=True),
|
|
||||||
password=dict(type='str', aliases=['pass', 'pwd'], required=True),
|
|
||||||
server_name=dict(type='str', aliases=['server'], required=True),
|
server_name=dict(type='str', aliases=['server'], required=True),
|
||||||
server_ip=dict(type='str', aliases=['ip', 'address']),
|
server_ip=dict(type='str', aliases=['ip', 'address']),
|
||||||
server_port=dict(type='int', aliases=['port']),
|
server_status=dict(type='str', default='enabled', aliases=['status'], choices=['enabled', 'disabled']),
|
||||||
server_protocol=dict(type='str', aliases=['proto', 'protocol'],
|
server_ports=dict(type='list', aliases=['port'], default=[]),
|
||||||
choices=['tcp', 'udp']),
|
)
|
||||||
server_status=dict(type='str', default='enable',
|
)
|
||||||
aliases=['status'],
|
|
||||||
choices=['enable', 'disable']),
|
module = AnsibleModule(
|
||||||
state=dict(type='str', default='present',
|
argument_spec=argument_spec,
|
||||||
choices=['present', 'absent']),
|
|
||||||
),
|
|
||||||
supports_check_mode=False
|
supports_check_mode=False
|
||||||
)
|
)
|
||||||
|
|
||||||
host = module.params['host']
|
host = module.params['host']
|
||||||
user = module.params['username']
|
username = module.params['username']
|
||||||
pwd = module.params['password']
|
password = module.params['password']
|
||||||
|
state = module.params['state']
|
||||||
|
write_config = module.params['write_config']
|
||||||
slb_server = module.params['server_name']
|
slb_server = module.params['server_name']
|
||||||
slb_server_ip = module.params['server_ip']
|
slb_server_ip = module.params['server_ip']
|
||||||
slb_server_port = module.params['server_port']
|
|
||||||
slb_server_proto = module.params['server_protocol']
|
|
||||||
slb_server_status = module.params['server_status']
|
slb_server_status = module.params['server_status']
|
||||||
state = module.params['state']
|
slb_server_ports = module.params['server_ports']
|
||||||
|
|
||||||
axapi_base_url = 'https://' + host + '/services/rest/V2.1/?format=json'
|
|
||||||
|
|
||||||
if slb_server_proto == 'tcp' or slb_server_proto == 'TCP' or \
|
|
||||||
slb_server_proto is None:
|
|
||||||
protocol = '2'
|
|
||||||
else:
|
|
||||||
protocol = '3'
|
|
||||||
|
|
||||||
if slb_server_status == 'enable':
|
|
||||||
status = '1'
|
|
||||||
else:
|
|
||||||
status = '0'
|
|
||||||
|
|
||||||
if slb_server is None:
|
if slb_server is None:
|
||||||
module.fail_json(msg='server_name is required')
|
module.fail_json(msg='server_name is required')
|
||||||
|
|
||||||
if slb_server_port is None:
|
axapi_base_url = 'https://%s/services/rest/V2.1/?format=json' % host
|
||||||
json_post = {'server': {'name': slb_server,
|
session_url = axapi_authenticate(module, axapi_base_url, username, password)
|
||||||
'host': slb_server_ip, 'status': status}}
|
|
||||||
else:
|
|
||||||
json_post = {'server': {'name': slb_server, 'host': slb_server_ip,
|
|
||||||
'status': status, 'port_list':
|
|
||||||
[{'port_num': slb_server_port,
|
|
||||||
'protocol': protocol}]}}
|
|
||||||
|
|
||||||
try:
|
# validate the ports data structure
|
||||||
session_url = axapi_authenticate(axapi_base_url, user, pwd)
|
validate_ports(module, slb_server_ports)
|
||||||
|
|
||||||
|
json_post = {
|
||||||
|
'server': {
|
||||||
|
'name': slb_server,
|
||||||
|
'host': slb_server_ip,
|
||||||
|
'status': axapi_enabled_disabled(slb_server_status),
|
||||||
|
'port_list': slb_server_ports,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
slb_server_data = axapi_call(module, session_url + '&method=slb.server.search', json.dumps({'name': slb_server}))
|
||||||
|
slb_server_exists = not axapi_failure(slb_server_data)
|
||||||
|
|
||||||
|
changed = False
|
||||||
if state == 'present':
|
if state == 'present':
|
||||||
response = axapi_call(session_url + '&method=slb.server.search',
|
if not slb_server_ip:
|
||||||
json.dumps({'name': slb_server}))
|
module.fail_json(msg='you must specify an IP address when creating a server')
|
||||||
slb_server_exist = re.search(slb_server, response, re.I)
|
|
||||||
|
|
||||||
if slb_server_exist is None:
|
if not slb_server_exists:
|
||||||
if slb_server_ip is None:
|
result = axapi_call(module, session_url + '&method=slb.server.create', json.dumps(json_post))
|
||||||
module.fail_json(msg='IP address is required')
|
if axapi_failure(result):
|
||||||
response = axapi_call(session_url +
|
module.fail_json(msg="failed to create the server: %s" % result['response']['err']['msg'])
|
||||||
'&method=slb.server.create',
|
changed = True
|
||||||
json.dumps(json_post))
|
|
||||||
else:
|
else:
|
||||||
response = axapi_call(session_url +
|
def needs_update(src_ports, dst_ports):
|
||||||
'&method=slb.server.update',
|
'''
|
||||||
json.dumps(json_post))
|
Checks to determine if the port definitions of the src_ports
|
||||||
|
array are in or different from those in dst_ports. If there is
|
||||||
|
a difference, this function returns true, otherwise false.
|
||||||
|
'''
|
||||||
|
for src_port in src_ports:
|
||||||
|
found = False
|
||||||
|
different = False
|
||||||
|
for dst_port in dst_ports:
|
||||||
|
if src_port['port_num'] == dst_port['port_num']:
|
||||||
|
found = True
|
||||||
|
for valid_field in VALID_PORT_FIELDS:
|
||||||
|
if src_port[valid_field] != dst_port[valid_field]:
|
||||||
|
different = True
|
||||||
|
break
|
||||||
|
if found or different:
|
||||||
|
break
|
||||||
|
if not found or different:
|
||||||
|
return True
|
||||||
|
# every port from the src exists in the dst, and none of them were different
|
||||||
|
return False
|
||||||
|
|
||||||
if state == 'absent':
|
defined_ports = slb_server_data.get('server', {}).get('port_list', [])
|
||||||
response = axapi_call(session_url +
|
|
||||||
'&method=slb.server.delete',
|
|
||||||
json.dumps({'name': slb_server}))
|
|
||||||
|
|
||||||
result = json.loads(response)
|
# we check for a needed update both ways, in case ports
|
||||||
axapi_call(session_url + '&method=session.close')
|
# are missing from either the ones specified by the user
|
||||||
|
# or from those on the device
|
||||||
|
if needs_update(defined_ports, slb_server_ports) or needs_update(slb_server_ports, defined_ports):
|
||||||
|
result = axapi_call(module, session_url + '&method=slb.server.update', json.dumps(json_post))
|
||||||
|
if axapi_failure(result):
|
||||||
|
module.fail_json(msg="failed to update the server: %s" % result['response']['err']['msg'])
|
||||||
|
changed = True
|
||||||
|
|
||||||
except Exception, e:
|
# if we changed things, get the full info regarding
|
||||||
return module.fail_json(msg='received exception: %s' % e)
|
# the service group for the return data below
|
||||||
|
if changed:
|
||||||
|
result = axapi_call(module, session_url + '&method=slb.server.search', json.dumps({'name': slb_server}))
|
||||||
|
else:
|
||||||
|
result = slb_server_data
|
||||||
|
elif state == 'absent':
|
||||||
|
if slb_server_exists:
|
||||||
|
result = axapi_call(module, session_url + '&method=slb.server.delete', json.dumps({'name': slb_server}))
|
||||||
|
changed = True
|
||||||
|
else:
|
||||||
|
result = dict(msg="the server was not present")
|
||||||
|
|
||||||
if 'respone' in result and 'err' in result['response']:
|
# if the config has changed, save the config unless otherwise requested
|
||||||
return module.fail_json(msg=result['response']['err']['msg'])
|
if changed and write_config:
|
||||||
|
write_result = axapi_call(module, session_url + '&method=system.action.write_memory')
|
||||||
|
if axapi_failure(write_result):
|
||||||
|
module.fail_json(msg="failed to save the configuration: %s" % write_result['response']['err']['msg'])
|
||||||
|
|
||||||
module.exit_json(changed=True, content=result)
|
# log out of the session nicely and exit
|
||||||
|
axapi_call(module, session_url + '&method=session.close')
|
||||||
|
module.exit_json(changed=changed, content=result)
|
||||||
|
|
||||||
|
# standard ansible module imports
|
||||||
from ansible.module_utils.basic import *
|
from ansible.module_utils.basic import *
|
||||||
|
from ansible.module_utils.urls import *
|
||||||
|
from ansible.module_utils.a10 import *
|
||||||
|
|
||||||
main()
|
main()
|
||||||
|
|
|
@ -24,7 +24,7 @@ along with Ansible. If not, see <http://www.gnu.org/licenses/>.
|
||||||
DOCUMENTATION = '''
|
DOCUMENTATION = '''
|
||||||
---
|
---
|
||||||
module: a10_service_group
|
module: a10_service_group
|
||||||
version_added: 1.0
|
version_added: 1.8
|
||||||
short_description: Manage A10 Networks AX/SoftAX/Thunder/vThunder devices
|
short_description: Manage A10 Networks AX/SoftAX/Thunder/vThunder devices
|
||||||
description:
|
description:
|
||||||
- Manage slb service-group objects on A10 Networks devices via aXAPI
|
- Manage slb service-group objects on A10 Networks devices via aXAPI
|
||||||
|
@ -32,9 +32,6 @@ author: Mischa Peters
|
||||||
notes:
|
notes:
|
||||||
- Requires A10 Networks aXAPI 2.1
|
- Requires A10 Networks aXAPI 2.1
|
||||||
- When a server doesn't exist and is added to the service-group the server will be created
|
- When a server doesn't exist and is added to the service-group the server will be created
|
||||||
requirements:
|
|
||||||
- urllib2
|
|
||||||
- re
|
|
||||||
options:
|
options:
|
||||||
host:
|
host:
|
||||||
description:
|
description:
|
||||||
|
@ -78,79 +75,91 @@ options:
|
||||||
default: round-robin
|
default: round-robin
|
||||||
aliases: ['method']
|
aliases: ['method']
|
||||||
choices: ['round-robin', 'weighted-rr', 'least-connection', 'weighted-least-connection', 'service-least-connection', 'service-weighted-least-connection', 'fastest-response', 'least-request', 'round-robin-strict', 'src-ip-only-hash', 'src-ip-hash']
|
choices: ['round-robin', 'weighted-rr', 'least-connection', 'weighted-least-connection', 'service-least-connection', 'service-weighted-least-connection', 'fastest-response', 'least-request', 'round-robin-strict', 'src-ip-only-hash', 'src-ip-hash']
|
||||||
server_name:
|
servers:
|
||||||
description:
|
description:
|
||||||
- slb server name
|
- A list of servers to add to the service group. Each list item should be a
|
||||||
|
dictionary which specifies the C(server:) and C(port:), but can also optionally
|
||||||
|
specify the C(status:). See the examples below for details.
|
||||||
required: false
|
required: false
|
||||||
default: null
|
default: null
|
||||||
aliases: ['server', 'member']
|
|
||||||
choices: []
|
|
||||||
server_port:
|
|
||||||
description:
|
|
||||||
- slb server port
|
|
||||||
required: false
|
|
||||||
default: null
|
|
||||||
aliases: ['port']
|
|
||||||
choices: []
|
|
||||||
server_status:
|
|
||||||
description:
|
|
||||||
- slb server status
|
|
||||||
required: false
|
|
||||||
default: enabled
|
|
||||||
aliases: ['status']
|
|
||||||
choices: ['enable', 'disable']
|
|
||||||
state:
|
|
||||||
description:
|
|
||||||
- create, remove or update slb service-group
|
|
||||||
required: false
|
|
||||||
default: present
|
|
||||||
aliases: []
|
aliases: []
|
||||||
choices: ['present', 'absent']
|
choices: []
|
||||||
|
write_config:
|
||||||
|
description:
|
||||||
|
- If C(yes), any changes will cause a write of the running configuration
|
||||||
|
to non-volatile memory. This will save I(all) configuration changes,
|
||||||
|
including those that may have been made manually or through other modules,
|
||||||
|
so care should be taken when specifying C(yes).
|
||||||
|
required: false
|
||||||
|
default: "no"
|
||||||
|
choices: ["yes", "no"]
|
||||||
|
validate_certs:
|
||||||
|
description:
|
||||||
|
- If C(no), SSL certificates will not be validated. This should only be used
|
||||||
|
on personally controlled devices using self-signed certificates.
|
||||||
|
required: false
|
||||||
|
default: 'yes'
|
||||||
|
choices: ['yes', 'no']
|
||||||
|
|
||||||
'''
|
'''
|
||||||
|
|
||||||
EXAMPLES = '''
|
EXAMPLES = '''
|
||||||
# Create a new service-group
|
# Create a new service-group
|
||||||
ansible host -m a10_service_group -a "host=a10adc.example.com username=axapiuser password=axapipass service_group=sg-80-tcp"
|
- a10_service_group:
|
||||||
|
host: a10.mydomain.com
|
||||||
|
username: myadmin
|
||||||
|
password: mypassword
|
||||||
|
service_group: sg-80-tcp
|
||||||
|
servers:
|
||||||
|
- server: foo1.mydomain.com
|
||||||
|
port: 8080
|
||||||
|
- server: foo2.mydomain.com
|
||||||
|
port: 8080
|
||||||
|
- server: foo3.mydomain.com
|
||||||
|
port: 8080
|
||||||
|
- server: foo4.mydomain.com
|
||||||
|
port: 8080
|
||||||
|
status: disabled
|
||||||
|
|
||||||
# Add a server
|
|
||||||
ansible host -m a10_service_group -a "host=a10adc.example.com username=axapiuser password=axapipass service_group=sg-80-tcp server_name=realserver1 server_port=80"
|
|
||||||
|
|
||||||
# Disable a server
|
|
||||||
ansible host -m a10_service_group -a "host=a10adc.example.com username=axapiuser password=axapipass service_group=sg-80-tcp server_name=realserver1 server_port=80 status=disable"
|
|
||||||
'''
|
'''
|
||||||
|
|
||||||
import urllib2
|
VALID_SERVICE_GROUP_FIELDS = ['name', 'protocol', 'lb_method']
|
||||||
|
VALID_SERVER_FIELDS = ['server', 'port', 'status']
|
||||||
|
|
||||||
|
def validate_servers(module, servers):
|
||||||
|
for item in servers:
|
||||||
|
for key in item:
|
||||||
|
if key not in VALID_SERVER_FIELDS:
|
||||||
|
module.fail_json(msg="invalid server field (%s), must be one of: %s" % (key, ','.join(VALID_SERVER_FIELDS)))
|
||||||
|
|
||||||
def axapi_call(url, post=None):
|
# validate the server name is present
|
||||||
result = urllib2.urlopen(url, post).read()
|
if 'server' not in item:
|
||||||
return result
|
module.fail_json(msg="server definitions must define the server field")
|
||||||
|
|
||||||
|
# validate the port number is present and an integer
|
||||||
|
if 'port' in item:
|
||||||
|
try:
|
||||||
|
item['port'] = int(item['port'])
|
||||||
|
except:
|
||||||
|
module.fail_json(msg="server port definitions must be integers")
|
||||||
|
else:
|
||||||
|
module.fail_json(msg="server definitions must define the port field")
|
||||||
|
|
||||||
def axapi_authenticate(base_url, user, pwd):
|
# convert the status to the internal API integer value
|
||||||
url = base_url + '&method=authenticate&username=' + user + \
|
if 'status' in item:
|
||||||
'&password=' + pwd
|
item['status'] = axapi_enabled_disabled(item['status'])
|
||||||
result = json.loads(axapi_call(url))
|
else:
|
||||||
if 'response' in result:
|
item['status'] = 1
|
||||||
return module.fail_json(msg=result['response']['err']['msg'])
|
|
||||||
sessid = result['session_id']
|
|
||||||
return base_url + '&session_id=' + sessid
|
|
||||||
|
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
global module
|
argument_spec = a10_argument_spec()
|
||||||
module = AnsibleModule(
|
argument_spec.update(url_argument_spec())
|
||||||
argument_spec=dict(
|
argument_spec.update(
|
||||||
host=dict(type='str', required=True),
|
dict(
|
||||||
username=dict(type='str', aliases=['user', 'admin'],
|
state=dict(type='str', default='present', choices=['present', 'absent']),
|
||||||
required=True),
|
service_group=dict(type='str', aliases=['service', 'pool', 'group'], required=True),
|
||||||
password=dict(type='str', aliases=['pass', 'pwd'], required=True),
|
service_group_protocol=dict(type='str', default='tcp', aliases=['proto', 'protocol'], choices=['tcp', 'udp']),
|
||||||
service_group=dict(type='str',
|
|
||||||
aliases=['service', 'pool', 'group'],
|
|
||||||
required=True),
|
|
||||||
service_group_protocol=dict(type='str', default='tcp',
|
|
||||||
aliases=['proto', 'protocol'],
|
|
||||||
choices=['tcp', 'udp']),
|
|
||||||
service_group_method=dict(type='str', default='round-robin',
|
service_group_method=dict(type='str', default='round-robin',
|
||||||
aliases=['method'],
|
aliases=['method'],
|
||||||
choices=['round-robin',
|
choices=['round-robin',
|
||||||
|
@ -164,27 +173,27 @@ def main():
|
||||||
'round-robin-strict',
|
'round-robin-strict',
|
||||||
'src-ip-only-hash',
|
'src-ip-only-hash',
|
||||||
'src-ip-hash']),
|
'src-ip-hash']),
|
||||||
server_name=dict(type='str', aliases=['server', 'member']),
|
servers=dict(type='list', aliases=['server', 'member'], default=[]),
|
||||||
server_port=dict(type='int', aliases=['port']),
|
)
|
||||||
server_status=dict(type='str', default='enable',
|
)
|
||||||
aliases=['status'],
|
|
||||||
choices=['enable', 'disable']),
|
module = AnsibleModule(
|
||||||
state=dict(type='str', default='present',
|
argument_spec=argument_spec,
|
||||||
choices=['present', 'absent']),
|
|
||||||
),
|
|
||||||
supports_check_mode=False
|
supports_check_mode=False
|
||||||
)
|
)
|
||||||
|
|
||||||
host = module.params['host']
|
host = module.params['host']
|
||||||
user = module.params['username']
|
username = module.params['username']
|
||||||
pwd = module.params['password']
|
password = module.params['password']
|
||||||
|
state = module.params['state']
|
||||||
|
write_config = module.params['write_config']
|
||||||
slb_service_group = module.params['service_group']
|
slb_service_group = module.params['service_group']
|
||||||
slb_service_group_proto = module.params['service_group_protocol']
|
slb_service_group_proto = module.params['service_group_protocol']
|
||||||
slb_service_group_method = module.params['service_group_method']
|
slb_service_group_method = module.params['service_group_method']
|
||||||
slb_server = module.params['server_name']
|
slb_servers = module.params['servers']
|
||||||
slb_server_port = module.params['server_port']
|
|
||||||
slb_server_status = module.params['server_status']
|
if slb_service_group is None:
|
||||||
state = module.params['state']
|
module.fail_json(msg='service_group is required')
|
||||||
|
|
||||||
axapi_base_url = 'https://' + host + '/services/rest/V2.1/?format=json'
|
axapi_base_url = 'https://' + host + '/services/rest/V2.1/?format=json'
|
||||||
load_balancing_methods = {'round-robin': 0,
|
load_balancing_methods = {'round-robin': 0,
|
||||||
|
@ -199,69 +208,134 @@ def main():
|
||||||
'src-ip-only-hash': 14,
|
'src-ip-only-hash': 14,
|
||||||
'src-ip-hash': 15}
|
'src-ip-hash': 15}
|
||||||
|
|
||||||
if slb_service_group_proto == 'tcp' or slb_service_group_proto == 'TCP':
|
if not slb_service_group_proto or slb_service_group_proto.lower() == 'tcp':
|
||||||
protocol = '2'
|
protocol = 2
|
||||||
else:
|
else:
|
||||||
protocol = '3'
|
protocol = 3
|
||||||
|
|
||||||
if slb_server_status == 'enable':
|
# validate the server data list structure
|
||||||
status = '1'
|
validate_servers(module, slb_servers)
|
||||||
else:
|
|
||||||
status = '0'
|
|
||||||
|
|
||||||
if slb_service_group is None:
|
json_post = {
|
||||||
module.fail_json(msg='service_group is required')
|
'service_group': {
|
||||||
|
'name': slb_service_group,
|
||||||
if slb_server is None and slb_server_port is None:
|
|
||||||
json_post = {'service_group': {'name': slb_service_group,
|
|
||||||
'protocol': protocol,
|
|
||||||
'lb_method': load_balancing_methods[slb_service_group_method]}}
|
|
||||||
elif slb_server is not None and slb_server_port is not None:
|
|
||||||
json_post = {'service_group': {'name': slb_service_group,
|
|
||||||
'protocol': protocol,
|
'protocol': protocol,
|
||||||
'lb_method': load_balancing_methods[slb_service_group_method],
|
'lb_method': load_balancing_methods[slb_service_group_method],
|
||||||
'member_list':
|
}
|
||||||
[{'server': slb_server,
|
}
|
||||||
'port': slb_server_port,
|
|
||||||
'status': status}]}}
|
|
||||||
else:
|
|
||||||
module.fail_json(msg='server_name and server_name_port are \
|
|
||||||
required to add to the service-group')
|
|
||||||
|
|
||||||
try:
|
# first we authenticate to get a session id
|
||||||
session_url = axapi_authenticate(axapi_base_url, user, pwd)
|
session_url = axapi_authenticate(module, axapi_base_url, username, password)
|
||||||
|
|
||||||
|
# then we check to see if the specified group exists
|
||||||
|
slb_result = axapi_call(module, session_url + '&method=slb.service_group.search', json.dumps({'name': slb_service_group}))
|
||||||
|
slb_service_group_exist = not axapi_failure(slb_result)
|
||||||
|
|
||||||
|
changed = False
|
||||||
if state == 'present':
|
if state == 'present':
|
||||||
response = axapi_call(session_url +
|
# before creating/updating we need to validate that servers
|
||||||
'&method=slb.service_group.search',
|
# defined in the servers list exist to prevent errors
|
||||||
json.dumps({'name': slb_service_group}))
|
checked_servers = []
|
||||||
slb_service_group_exist = re.search(slb_service_group,
|
for server in slb_servers:
|
||||||
response, re.I)
|
result = axapi_call(module, session_url + '&method=slb.server.search', json.dumps({'name': server['server']}))
|
||||||
|
if axapi_failure(result):
|
||||||
|
module.fail_json(msg="the server %s specified in the servers list does not exist" % server['server'])
|
||||||
|
checked_servers.append(server['server'])
|
||||||
|
|
||||||
if slb_service_group_exist is None:
|
if not slb_service_group_exist:
|
||||||
response = axapi_call(session_url +
|
result = axapi_call(module, session_url + '&method=slb.service_group.create', json.dumps(json_post))
|
||||||
'&method=slb.service_group.create',
|
if axapi_failure(result):
|
||||||
json.dumps(json_post))
|
module.fail_json(msg=result['response']['err']['msg'])
|
||||||
|
changed = True
|
||||||
else:
|
else:
|
||||||
response = axapi_call(session_url +
|
# check to see if the service group definition without the
|
||||||
'&method=slb.service_group.update',
|
# server members is different, and update that individually
|
||||||
json.dumps(json_post))
|
# if it needs it
|
||||||
|
do_update = False
|
||||||
|
for field in VALID_SERVICE_GROUP_FIELDS:
|
||||||
|
if json_post['service_group'][field] != slb_result['service_group'][field]:
|
||||||
|
do_update = True
|
||||||
|
break
|
||||||
|
|
||||||
if state == 'absent':
|
if do_update:
|
||||||
response = axapi_call(session_url +
|
result = axapi_call(module, session_url + '&method=slb.service_group.update', json.dumps(json_post))
|
||||||
'&method=slb.service_group.delete',
|
if axapi_failure(result):
|
||||||
json.dumps({'name': slb_service_group}))
|
module.fail_json(msg=result['response']['err']['msg'])
|
||||||
|
changed = True
|
||||||
|
|
||||||
result = json.loads(response)
|
# next we pull the defined list of servers out of the returned
|
||||||
axapi_call(session_url + '&method=session.close')
|
# results to make it a bit easier to iterate over
|
||||||
|
defined_servers = slb_result.get('service_group', {}).get('member_list', [])
|
||||||
|
|
||||||
except Exception, e:
|
# next we add/update new member servers from the user-specified
|
||||||
return module.fail_json(msg='received exception: %s' % e)
|
# list if they're different or not on the target device
|
||||||
|
for server in slb_servers:
|
||||||
|
found = False
|
||||||
|
different = False
|
||||||
|
for def_server in defined_servers:
|
||||||
|
if server['server'] == def_server['server']:
|
||||||
|
found = True
|
||||||
|
for valid_field in VALID_SERVER_FIELDS:
|
||||||
|
if server[valid_field] != def_server[valid_field]:
|
||||||
|
different = True
|
||||||
|
break
|
||||||
|
if found or different:
|
||||||
|
break
|
||||||
|
# add or update as required
|
||||||
|
server_data = {
|
||||||
|
"name": slb_service_group,
|
||||||
|
"member": server,
|
||||||
|
}
|
||||||
|
if not found:
|
||||||
|
result = axapi_call(module, session_url + '&method=slb.service_group.member.create', json.dumps(server_data))
|
||||||
|
changed = True
|
||||||
|
elif different:
|
||||||
|
result = axapi_call(module, session_url + '&method=slb.service_group.member.update', json.dumps(server_data))
|
||||||
|
changed = True
|
||||||
|
|
||||||
if 'respone' in result and 'err' in result['response']:
|
# finally, remove any servers that are on the target
|
||||||
return module.fail_json(msg=result['response']['err']['msg'])
|
# device but were not specified in the list given
|
||||||
|
for server in defined_servers:
|
||||||
|
found = False
|
||||||
|
for slb_server in slb_servers:
|
||||||
|
if server['server'] == slb_server['server']:
|
||||||
|
found = True
|
||||||
|
break
|
||||||
|
# remove if not found
|
||||||
|
server_data = {
|
||||||
|
"name": slb_service_group,
|
||||||
|
"member": server,
|
||||||
|
}
|
||||||
|
if not found:
|
||||||
|
result = axapi_call(module, session_url + '&method=slb.service_group.member.delete', json.dumps(server_data))
|
||||||
|
changed = True
|
||||||
|
|
||||||
module.exit_json(changed=True, content=result)
|
# if we changed things, get the full info regarding
|
||||||
|
# the service group for the return data below
|
||||||
|
if changed:
|
||||||
|
result = axapi_call(module, session_url + '&method=slb.service_group.search', json.dumps({'name': slb_service_group}))
|
||||||
|
else:
|
||||||
|
result = slb_result
|
||||||
|
elif state == 'absent':
|
||||||
|
if slb_service_group_exist:
|
||||||
|
result = axapi_call(module, session_url + '&method=slb.service_group.delete', json.dumps({'name': slb_service_group}))
|
||||||
|
changed = True
|
||||||
|
else:
|
||||||
|
result = dict(msg="the service group was not present")
|
||||||
|
|
||||||
|
# if the config has changed, save the config unless otherwise requested
|
||||||
|
if changed and write_config:
|
||||||
|
write_result = axapi_call(module, session_url + '&method=system.action.write_memory')
|
||||||
|
if axapi_failure(write_result):
|
||||||
|
module.fail_json(msg="failed to save the configuration: %s" % write_result['response']['err']['msg'])
|
||||||
|
|
||||||
|
# log out of the session nicely and exit
|
||||||
|
axapi_call(module, session_url + '&method=session.close')
|
||||||
|
module.exit_json(changed=changed, content=result)
|
||||||
|
|
||||||
|
# standard ansible module imports
|
||||||
from ansible.module_utils.basic import *
|
from ansible.module_utils.basic import *
|
||||||
|
from ansible.module_utils.urls import *
|
||||||
|
from ansible.module_utils.a10 import *
|
||||||
|
|
||||||
main()
|
main()
|
||||||
|
|
|
@ -1,352 +0,0 @@
|
||||||
#!/usr/bin/python
|
|
||||||
# -*- coding: utf-8 -*-
|
|
||||||
|
|
||||||
"""
|
|
||||||
Ansible module to manage A10 Networks slb virtual server objects
|
|
||||||
(c) 2014, Mischa Peters <mpeters@a10networks.com>
|
|
||||||
|
|
||||||
This file is part of Ansible
|
|
||||||
|
|
||||||
Ansible is free software: you can redistribute it and/or modify
|
|
||||||
it under the terms of the GNU General Public License as published by
|
|
||||||
the Free Software Foundation, either version 3 of the License, or
|
|
||||||
(at your option) any later version.
|
|
||||||
|
|
||||||
Ansible is distributed in the hope that it will be useful,
|
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
GNU General Public License for more details.
|
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
|
||||||
along with Ansible. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
"""
|
|
||||||
|
|
||||||
DOCUMENTATION = '''
|
|
||||||
---
|
|
||||||
module: a10_virtual_server
|
|
||||||
version_added: 1.0
|
|
||||||
short_description: Manage A10 Networks AX/SoftAX/Thunder/vThunder devices
|
|
||||||
description:
|
|
||||||
- Manage slb virtual server objects on A10 Networks devices via aXAPI
|
|
||||||
author: Mischa Peters
|
|
||||||
notes:
|
|
||||||
- Requires A10 Networks aXAPI 2.1
|
|
||||||
requirements:
|
|
||||||
- urllib2
|
|
||||||
- re
|
|
||||||
options:
|
|
||||||
host:
|
|
||||||
description:
|
|
||||||
- hostname or ip of your A10 Networks device
|
|
||||||
required: true
|
|
||||||
default: null
|
|
||||||
aliases: []
|
|
||||||
choices: []
|
|
||||||
username:
|
|
||||||
description:
|
|
||||||
- admin account of your A10 Networks device
|
|
||||||
required: true
|
|
||||||
default: null
|
|
||||||
aliases: ['user', 'admin']
|
|
||||||
choices: []
|
|
||||||
password:
|
|
||||||
description:
|
|
||||||
- admin password of your A10 Networks device
|
|
||||||
required: true
|
|
||||||
default: null
|
|
||||||
aliases: ['pass', 'pwd']
|
|
||||||
choices: []
|
|
||||||
virtual_server:
|
|
||||||
description:
|
|
||||||
- slb virtual server name
|
|
||||||
required: true
|
|
||||||
default: null
|
|
||||||
aliases: ['vip', 'virtual']
|
|
||||||
choices: []
|
|
||||||
virtual_server_ip:
|
|
||||||
description:
|
|
||||||
- slb virtual server ip address
|
|
||||||
required: false
|
|
||||||
default: null
|
|
||||||
aliases: ['ip', 'address']
|
|
||||||
choices: []
|
|
||||||
virtual_server_status:
|
|
||||||
description:
|
|
||||||
- slb virtual server status
|
|
||||||
required: false
|
|
||||||
default: enable
|
|
||||||
aliases: ['status']
|
|
||||||
choices: ['enabled', 'disabled']
|
|
||||||
virtual_server_port:
|
|
||||||
description:
|
|
||||||
- slb virtual server port
|
|
||||||
required: false
|
|
||||||
default: round-robin
|
|
||||||
aliases: ['port', 'vport']
|
|
||||||
choices: []
|
|
||||||
virtual_server_type:
|
|
||||||
description:
|
|
||||||
- slb virtual server port type
|
|
||||||
required: false
|
|
||||||
default: null
|
|
||||||
aliases: ['proto', 'protocol']
|
|
||||||
choices: ['tcp', 'udp', 'fast-http', 'http', 'https']
|
|
||||||
virtual_server_port_status:
|
|
||||||
description:
|
|
||||||
- slb virtual server port status
|
|
||||||
required: false
|
|
||||||
default: enable
|
|
||||||
aliases: ['status']
|
|
||||||
choices: ['enabled', 'disabled']
|
|
||||||
service_group:
|
|
||||||
description:
|
|
||||||
- slb virtual server service-group
|
|
||||||
required: false
|
|
||||||
default: enabled
|
|
||||||
aliases: ['pool', 'group']
|
|
||||||
choices: []
|
|
||||||
state:
|
|
||||||
description:
|
|
||||||
- create, update or remove slb virtual server
|
|
||||||
required: false
|
|
||||||
default: present
|
|
||||||
aliases: []
|
|
||||||
choices: ['present', 'absent']
|
|
||||||
'''
|
|
||||||
|
|
||||||
EXAMPLES = '''
|
|
||||||
# Create a new virtual server
|
|
||||||
ansible host -m a10_virtual -a "host=a10adc.example.com username=axapiuser password=axapipass virtual_server=vip1 virtual_server_ip=192.168.1.20"
|
|
||||||
|
|
||||||
# Add a virtual port
|
|
||||||
ansible host -m a10_virtual -a "host=a10adc.example.com username=axapiuser password=axapipass virtual_server=vip1 virtual_server_ip=192.168.1.20 virtual_server_port=80 virtual_server_port_type=http service_group=sg-80-tcp"
|
|
||||||
|
|
||||||
# Disable a virtual server
|
|
||||||
ansible host -m a10_virtual -a "host=a10adc.example.com username=axapiuser password=axapipass virtual_server=vip1 status=disable"
|
|
||||||
|
|
||||||
# Disable a virtual server port
|
|
||||||
ansible host -m a10_virtual -a "host=a10adc.example.com username=axapiuser password=axapipass virtual_server=vip1 virtual_server_port=80 virtual_server_port_type=http virtual_server_port_status=disable"
|
|
||||||
'''
|
|
||||||
|
|
||||||
import urllib2
|
|
||||||
|
|
||||||
|
|
||||||
def axapi_call(url, post=None):
|
|
||||||
result = urllib2.urlopen(url, post).read()
|
|
||||||
return result
|
|
||||||
|
|
||||||
|
|
||||||
def axapi_authenticate(base_url, user, pwd):
|
|
||||||
url = base_url + '&method=authenticate&username=' + user + \
|
|
||||||
'&password=' + pwd
|
|
||||||
result = json.loads(axapi_call(url))
|
|
||||||
if 'response' in result:
|
|
||||||
return module.fail_json(msg=result['response']['err']['msg'])
|
|
||||||
sessid = result['session_id']
|
|
||||||
return base_url + '&session_id=' + sessid
|
|
||||||
|
|
||||||
|
|
||||||
def main():
|
|
||||||
global module
|
|
||||||
module = AnsibleModule(
|
|
||||||
argument_spec=dict(
|
|
||||||
host=dict(type='str', required=True),
|
|
||||||
username=dict(type='str', aliases=['user', 'admin'],
|
|
||||||
required=True),
|
|
||||||
password=dict(type='str', aliases=['pass', 'pwd'],
|
|
||||||
required=True),
|
|
||||||
virtual_server=dict(type='str', aliases=['vip', 'virtual'],
|
|
||||||
required=True),
|
|
||||||
virtual_server_ip=dict(type='str',
|
|
||||||
aliases=['ip', 'address']),
|
|
||||||
virtual_server_status=dict(type='str', default='enabled',
|
|
||||||
aliases=['status'],
|
|
||||||
choices=['enabled', 'disabled']),
|
|
||||||
virtual_server_port=dict(type='int',
|
|
||||||
aliases=['port', 'vport']),
|
|
||||||
virtual_server_port_type=dict(type='str',
|
|
||||||
aliases=['proto', 'protocol'],
|
|
||||||
choices=['tcp', 'udp', 'fast-http',
|
|
||||||
'http', 'https']),
|
|
||||||
virtual_server_port_status=dict(type='str', default='enabled',
|
|
||||||
aliases=['portstatus',
|
|
||||||
'port_status'],
|
|
||||||
choices=['enabled', 'disabled']),
|
|
||||||
service_group=dict(type='str', aliases=['pool', 'group']),
|
|
||||||
state=dict(type='str', default='present',
|
|
||||||
choices=['present', 'absent']),
|
|
||||||
),
|
|
||||||
supports_check_mode=False
|
|
||||||
)
|
|
||||||
|
|
||||||
host = module.params['host']
|
|
||||||
user = module.params['username']
|
|
||||||
pwd = module.params['password']
|
|
||||||
slb_virtual = module.params['virtual_server']
|
|
||||||
slb_virtual_ip = module.params['virtual_server_ip']
|
|
||||||
slb_virtual_status = module.params['virtual_server_status']
|
|
||||||
slb_virtual_port = module.params['virtual_server_port']
|
|
||||||
slb_virtual_port_type = module.params['virtual_server_port_type']
|
|
||||||
slb_virtual_port_status = module.params['virtual_server_port_status']
|
|
||||||
slb_service_group = module.params['service_group']
|
|
||||||
state = module.params['state']
|
|
||||||
|
|
||||||
axapi_base_url = 'https://' + host + '/services/rest/V2.1/?format=json'
|
|
||||||
vport_types = {'tcp': 2,
|
|
||||||
'udp': 3,
|
|
||||||
'fast-http': 9,
|
|
||||||
'http': 11,
|
|
||||||
'https': 12}
|
|
||||||
|
|
||||||
if slb_virtual_status == 'enabled':
|
|
||||||
status = '1'
|
|
||||||
else:
|
|
||||||
status = '0'
|
|
||||||
|
|
||||||
if slb_virtual_port_status == 'enabled':
|
|
||||||
port_status = '1'
|
|
||||||
else:
|
|
||||||
port_status = '0'
|
|
||||||
|
|
||||||
if slb_virtual is None:
|
|
||||||
module.fail_json(msg='virtual_server is required')
|
|
||||||
|
|
||||||
try:
|
|
||||||
session_url = axapi_authenticate(axapi_base_url, user, pwd)
|
|
||||||
|
|
||||||
if state == 'present':
|
|
||||||
find_slb_virtual = axapi_call(session_url +
|
|
||||||
'&method=slb.virtual_server.search',
|
|
||||||
json.dumps({'name': slb_virtual}))
|
|
||||||
slb_virtual_fail = re.search('status": "fail',
|
|
||||||
find_slb_virtual, re.I)
|
|
||||||
|
|
||||||
if slb_virtual_fail:
|
|
||||||
if slb_virtual_port is None and slb_virtual_port_type is None \
|
|
||||||
and slb_service_group is None:
|
|
||||||
json_post = {'virtual_server': {'name': slb_virtual,
|
|
||||||
'address': slb_virtual_ip,
|
|
||||||
'status': status}}
|
|
||||||
elif slb_virtual_port is not None and \
|
|
||||||
slb_virtual_port_type is not None and \
|
|
||||||
slb_service_group is None:
|
|
||||||
json_post = {'virtual_server':
|
|
||||||
{'name': slb_virtual,
|
|
||||||
'address': slb_virtual_ip,
|
|
||||||
'status': status,
|
|
||||||
'vport_list':
|
|
||||||
[{'protocol':
|
|
||||||
vport_types[slb_virtual_port_type],
|
|
||||||
'port': slb_virtual_port}]}}
|
|
||||||
elif slb_virtual_port is not None and \
|
|
||||||
slb_virtual_port_type is not None and \
|
|
||||||
slb_service_group is not None:
|
|
||||||
json_post = {'virtual_server':
|
|
||||||
{'name': slb_virtual,
|
|
||||||
'address': slb_virtual_ip,
|
|
||||||
'status': status, 'vport_list':
|
|
||||||
[{'protocol':
|
|
||||||
vport_types[slb_virtual_port_type],
|
|
||||||
'port': slb_virtual_port,
|
|
||||||
'service_group': slb_service_group}]}}
|
|
||||||
else:
|
|
||||||
module.fail_json(msg='virtual_server_port and
|
|
||||||
virtual_server_type are required to
|
|
||||||
create the virtual port')
|
|
||||||
|
|
||||||
response = axapi_call(session_url +
|
|
||||||
'&method=slb.virtual_server.create',
|
|
||||||
json.dumps(json_post))
|
|
||||||
else:
|
|
||||||
response = axapi_call(session_url +
|
|
||||||
'&method=slb.virtual_server.search',
|
|
||||||
json.dumps({'name': slb_virtual}))
|
|
||||||
slb_virtual_port_exist = re.search('"port":' +
|
|
||||||
str(slb_virtual_port)
|
|
||||||
response, re.I)
|
|
||||||
current_status = json.loads(response)['virtual_server']['status']
|
|
||||||
current_port_status = 1
|
|
||||||
|
|
||||||
if slb_virtual_port_exist:
|
|
||||||
vport_list = json.loads(response)['virtual_server']['vport_list']
|
|
||||||
if vport_list:
|
|
||||||
for port in range(len(vport_list)):
|
|
||||||
if slb_virtual_port == str(vport_list[port]['port']):
|
|
||||||
current_port_status = vport_list[port]['port']
|
|
||||||
|
|
||||||
json_post = {'address': slb_virtual_ip,
|
|
||||||
'vport':
|
|
||||||
{'protocol':
|
|
||||||
vport_types[slb_virtual_port_type],
|
|
||||||
'port': slb_virtual_port,
|
|
||||||
'service_group': slb_service_group},
|
|
||||||
'status': port_status}
|
|
||||||
response = axapi_call(session_url +
|
|
||||||
'&method=slb.virtual_server.\
|
|
||||||
vport.update', json.dumps(json_post))
|
|
||||||
else:
|
|
||||||
if slb_service_group is None:
|
|
||||||
module.fail_json(msg='service_group is required')
|
|
||||||
json_post = {'name': slb_virtual,
|
|
||||||
'vport':
|
|
||||||
{'protocol':
|
|
||||||
vport_types[slb_virtual_port_type],
|
|
||||||
'port': slb_virtual_port,
|
|
||||||
'service_group': slb_service_group},
|
|
||||||
'status': port_status}
|
|
||||||
response = axapi_call(session_url +
|
|
||||||
'&method=slb.virtual_server.\
|
|
||||||
vport.create', json.dumps(json_post))
|
|
||||||
|
|
||||||
if current_status != status:
|
|
||||||
json_post = {'virtual_server':
|
|
||||||
{'name': slb_virtual,
|
|
||||||
'address': slb_virtual_ip,
|
|
||||||
'status': status}}
|
|
||||||
response = axapi_call(session_url +
|
|
||||||
'&method=slb.virtual_server.update',
|
|
||||||
json.dumps(json_post))
|
|
||||||
|
|
||||||
if current_port_status != port_status:
|
|
||||||
json_post = {'address': slb_virtual_ip, 'vport':
|
|
||||||
{'protocol':
|
|
||||||
vport_types[slb_virtual_port_type],
|
|
||||||
'port': slb_virtual_port},
|
|
||||||
'status': port_status}
|
|
||||||
response = axapi_call(session_url +
|
|
||||||
'&method=slb.virtual_server.\
|
|
||||||
vport.update', json.dumps(json_post))
|
|
||||||
|
|
||||||
if state == 'absent':
|
|
||||||
if slb_virtual_port is not None and \
|
|
||||||
slb_virtual_port_type is not None:
|
|
||||||
response = axapi_call(session_url +
|
|
||||||
'&method=slb.virtual_server.\
|
|
||||||
vport.delete',
|
|
||||||
json.dumps({'name': slb_virtual,
|
|
||||||
'vport':
|
|
||||||
{'protocol':
|
|
||||||
vport_types[slb_virtual_port_type],
|
|
||||||
'port': slb_virtual_port}}))
|
|
||||||
elif slb_virtual_port is None and slb_virtual_port_type is None:
|
|
||||||
response = axapi_call(session_url +
|
|
||||||
'&method=slb.virtual_server.delete',
|
|
||||||
json.dumps({'name': slb_virtual}))
|
|
||||||
else:
|
|
||||||
module.fail_json(msg='virtual_server_port and \
|
|
||||||
virtual_server_type are required to remove \
|
|
||||||
the virtual port')
|
|
||||||
|
|
||||||
result = json.loads(response)
|
|
||||||
axapi_call(session_url + '&method=session.close')
|
|
||||||
|
|
||||||
except Exception, e:
|
|
||||||
return module.fail_json(msg='received exception: %s' % e)
|
|
||||||
|
|
||||||
if 'respone' in result and 'err' in result['response']:
|
|
||||||
return module.fail_json(msg=result['response']['err']['msg'])
|
|
||||||
|
|
||||||
module.exit_json(changed=True, content=result)
|
|
||||||
|
|
||||||
from ansible.module_utils.basic import *
|
|
||||||
main()
|
|
299
library/net_infrastructure/a10_virtual_server
Normal file
299
library/net_infrastructure/a10_virtual_server
Normal file
|
@ -0,0 +1,299 @@
|
||||||
|
#!/usr/bin/python
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
"""
|
||||||
|
Ansible module to manage A10 Networks slb virtual server objects
|
||||||
|
(c) 2014, Mischa Peters <mpeters@a10networks.com>
|
||||||
|
|
||||||
|
This file is part of Ansible
|
||||||
|
|
||||||
|
Ansible is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
|
||||||
|
Ansible is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with Ansible. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
"""
|
||||||
|
|
||||||
|
DOCUMENTATION = '''
|
||||||
|
---
|
||||||
|
module: a10_virtual_server
|
||||||
|
version_added: 1.8
|
||||||
|
short_description: Manage A10 Networks AX/SoftAX/Thunder/vThunder devices
|
||||||
|
description:
|
||||||
|
- Manage slb virtual server objects on A10 Networks devices via aXAPI
|
||||||
|
author: Mischa Peters
|
||||||
|
notes:
|
||||||
|
- Requires A10 Networks aXAPI 2.1
|
||||||
|
requirements:
|
||||||
|
- urllib2
|
||||||
|
- re
|
||||||
|
options:
|
||||||
|
host:
|
||||||
|
description:
|
||||||
|
- hostname or ip of your A10 Networks device
|
||||||
|
required: true
|
||||||
|
default: null
|
||||||
|
aliases: []
|
||||||
|
choices: []
|
||||||
|
username:
|
||||||
|
description:
|
||||||
|
- admin account of your A10 Networks device
|
||||||
|
required: true
|
||||||
|
default: null
|
||||||
|
aliases: ['user', 'admin']
|
||||||
|
choices: []
|
||||||
|
password:
|
||||||
|
description:
|
||||||
|
- admin password of your A10 Networks device
|
||||||
|
required: true
|
||||||
|
default: null
|
||||||
|
aliases: ['pass', 'pwd']
|
||||||
|
choices: []
|
||||||
|
virtual_server:
|
||||||
|
description:
|
||||||
|
- slb virtual server name
|
||||||
|
required: true
|
||||||
|
default: null
|
||||||
|
aliases: ['vip', 'virtual']
|
||||||
|
choices: []
|
||||||
|
virtual_server_ip:
|
||||||
|
description:
|
||||||
|
- slb virtual server ip address
|
||||||
|
required: false
|
||||||
|
default: null
|
||||||
|
aliases: ['ip', 'address']
|
||||||
|
choices: []
|
||||||
|
virtual_server_status:
|
||||||
|
description:
|
||||||
|
- slb virtual server status
|
||||||
|
required: false
|
||||||
|
default: enable
|
||||||
|
aliases: ['status']
|
||||||
|
choices: ['enabled', 'disabled']
|
||||||
|
virtual_server_ports:
|
||||||
|
description:
|
||||||
|
- A list of ports to create for the virtual server. Each list item should be a
|
||||||
|
dictionary which specifies the C(port:) and C(type:), but can also optionally
|
||||||
|
specify the C(service_group:) as well as the C(status:). See the examples
|
||||||
|
below for details. This parameter is required when C(state) is C(present).
|
||||||
|
required: false
|
||||||
|
write_config:
|
||||||
|
description:
|
||||||
|
- If C(yes), any changes will cause a write of the running configuration
|
||||||
|
to non-volatile memory. This will save I(all) configuration changes,
|
||||||
|
including those that may have been made manually or through other modules,
|
||||||
|
so care should be taken when specifying C(yes).
|
||||||
|
required: false
|
||||||
|
default: "no"
|
||||||
|
choices: ["yes", "no"]
|
||||||
|
validate_certs:
|
||||||
|
description:
|
||||||
|
- If C(no), SSL certificates will not be validated. This should only be used
|
||||||
|
on personally controlled devices using self-signed certificates.
|
||||||
|
required: false
|
||||||
|
default: 'yes'
|
||||||
|
choices: ['yes', 'no']
|
||||||
|
|
||||||
|
'''
|
||||||
|
|
||||||
|
EXAMPLES = '''
|
||||||
|
# Create a new virtual server
|
||||||
|
- a10_virtual_server:
|
||||||
|
host: a10.mydomain.com
|
||||||
|
username: myadmin
|
||||||
|
password: mypassword
|
||||||
|
virtual_server: vserver1
|
||||||
|
virtual_server_ip: 1.1.1.1
|
||||||
|
virtual_server_ports:
|
||||||
|
- port: 80
|
||||||
|
protocol: TCP
|
||||||
|
service_group: sg-80-tcp
|
||||||
|
- port: 443
|
||||||
|
protocol: HTTPS
|
||||||
|
service_group: sg-443-https
|
||||||
|
- port: 8080
|
||||||
|
protocol: http
|
||||||
|
status: disabled
|
||||||
|
|
||||||
|
'''
|
||||||
|
|
||||||
|
VALID_PORT_FIELDS = ['port', 'protocol', 'service_group', 'status']
|
||||||
|
|
||||||
|
def validate_ports(module, ports):
|
||||||
|
for item in ports:
|
||||||
|
for key in item:
|
||||||
|
if key not in VALID_PORT_FIELDS:
|
||||||
|
module.fail_json(msg="invalid port field (%s), must be one of: %s" % (key, ','.join(VALID_PORT_FIELDS)))
|
||||||
|
|
||||||
|
# validate the port number is present and an integer
|
||||||
|
if 'port' in item:
|
||||||
|
try:
|
||||||
|
item['port'] = int(item['port'])
|
||||||
|
except:
|
||||||
|
module.fail_json(msg="port definitions must be integers")
|
||||||
|
else:
|
||||||
|
module.fail_json(msg="port definitions must define the port field")
|
||||||
|
|
||||||
|
# validate the port protocol is present, and convert it to
|
||||||
|
# the internal API integer value (and validate it)
|
||||||
|
if 'protocol' in item:
|
||||||
|
protocol = axapi_get_vport_protocol(item['protocol'])
|
||||||
|
if not protocol:
|
||||||
|
module.fail_json(msg="invalid port protocol, must be one of: %s" % ','.join(AXAPI_VPORT_PROTOCOLS))
|
||||||
|
else:
|
||||||
|
item['protocol'] = protocol
|
||||||
|
else:
|
||||||
|
module.fail_json(msg="port definitions must define the port protocol (%s)" % ','.join(AXAPI_VPORT_PROTOCOLS))
|
||||||
|
|
||||||
|
# convert the status to the internal API integer value
|
||||||
|
if 'status' in item:
|
||||||
|
item['status'] = axapi_enabled_disabled(item['status'])
|
||||||
|
else:
|
||||||
|
item['status'] = 1
|
||||||
|
|
||||||
|
# ensure the service_group field is at least present
|
||||||
|
if 'service_group' not in item:
|
||||||
|
item['service_group'] = ''
|
||||||
|
|
||||||
|
def main():
|
||||||
|
argument_spec = a10_argument_spec()
|
||||||
|
argument_spec.update(url_argument_spec())
|
||||||
|
argument_spec.update(
|
||||||
|
dict(
|
||||||
|
state=dict(type='str', default='present', choices=['present', 'absent']),
|
||||||
|
virtual_server=dict(type='str', aliases=['vip', 'virtual'], required=True),
|
||||||
|
virtual_server_ip=dict(type='str', aliases=['ip', 'address'], required=True),
|
||||||
|
virtual_server_status=dict(type='str', default='enabled', aliases=['status'], choices=['enabled', 'disabled']),
|
||||||
|
virtual_server_ports=dict(type='list', required=True),
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
module = AnsibleModule(
|
||||||
|
argument_spec=argument_spec,
|
||||||
|
supports_check_mode=False
|
||||||
|
)
|
||||||
|
|
||||||
|
host = module.params['host']
|
||||||
|
username = module.params['username']
|
||||||
|
password = module.params['password']
|
||||||
|
state = module.params['state']
|
||||||
|
write_config = module.params['write_config']
|
||||||
|
slb_virtual = module.params['virtual_server']
|
||||||
|
slb_virtual_ip = module.params['virtual_server_ip']
|
||||||
|
slb_virtual_status = module.params['virtual_server_status']
|
||||||
|
slb_virtual_ports = module.params['virtual_server_ports']
|
||||||
|
|
||||||
|
if slb_virtual is None:
|
||||||
|
module.fail_json(msg='virtual_server is required')
|
||||||
|
|
||||||
|
validate_ports(module, slb_virtual_ports)
|
||||||
|
|
||||||
|
axapi_base_url = 'https://%s/services/rest/V2.1/?format=json' % host
|
||||||
|
session_url = axapi_authenticate(module, axapi_base_url, username, password)
|
||||||
|
|
||||||
|
slb_virtual_data = axapi_call(module, session_url + '&method=slb.virtual_server.search', json.dumps({'name': slb_virtual}))
|
||||||
|
slb_virtual_exists = not axapi_failure(slb_virtual_data)
|
||||||
|
|
||||||
|
changed = False
|
||||||
|
if state == 'present':
|
||||||
|
json_post = {
|
||||||
|
'virtual_server': {
|
||||||
|
'name': slb_virtual,
|
||||||
|
'address': slb_virtual_ip,
|
||||||
|
'status': axapi_enabled_disabled(slb_virtual_status),
|
||||||
|
'vport_list': slb_virtual_ports,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
# before creating/updating we need to validate that any
|
||||||
|
# service groups defined in the ports list exist since
|
||||||
|
# since the API will still create port definitions for
|
||||||
|
# them while indicating a failure occurred
|
||||||
|
checked_service_groups = []
|
||||||
|
for port in slb_virtual_ports:
|
||||||
|
if 'service_group' in port and port['service_group'] not in checked_service_groups:
|
||||||
|
# skip blank service group entries
|
||||||
|
if port['service_group'] == '':
|
||||||
|
continue
|
||||||
|
result = axapi_call(module, session_url + '&method=slb.service_group.search', json.dumps({'name': port['service_group']}))
|
||||||
|
if axapi_failure(result):
|
||||||
|
module.fail_json(msg="the service group %s specified in the ports list does not exist" % port['service_group'])
|
||||||
|
checked_service_groups.append(port['service_group'])
|
||||||
|
|
||||||
|
if not slb_virtual_exists:
|
||||||
|
result = axapi_call(module, session_url + '&method=slb.virtual_server.create', json.dumps(json_post))
|
||||||
|
if axapi_failure(result):
|
||||||
|
module.fail_json(msg="failed to create the virtual server: %s" % result['response']['err']['msg'])
|
||||||
|
changed = True
|
||||||
|
else:
|
||||||
|
def needs_update(src_ports, dst_ports):
|
||||||
|
'''
|
||||||
|
Checks to determine if the port definitions of the src_ports
|
||||||
|
array are in or different from those in dst_ports. If there is
|
||||||
|
a difference, this function returns true, otherwise false.
|
||||||
|
'''
|
||||||
|
for src_port in src_ports:
|
||||||
|
found = False
|
||||||
|
different = False
|
||||||
|
for dst_port in dst_ports:
|
||||||
|
if src_port['port'] == dst_port['port']:
|
||||||
|
found = True
|
||||||
|
for valid_field in VALID_PORT_FIELDS:
|
||||||
|
if src_port[valid_field] != dst_port[valid_field]:
|
||||||
|
different = True
|
||||||
|
break
|
||||||
|
if found or different:
|
||||||
|
break
|
||||||
|
if not found or different:
|
||||||
|
return True
|
||||||
|
# every port from the src exists in the dst, and none of them were different
|
||||||
|
return False
|
||||||
|
|
||||||
|
defined_ports = slb_virtual_data.get('virtual_server', {}).get('vport_list', [])
|
||||||
|
|
||||||
|
# we check for a needed update both ways, in case ports
|
||||||
|
# are missing from either the ones specified by the user
|
||||||
|
# or from those on the device
|
||||||
|
if needs_update(defined_ports, slb_virtual_ports) or needs_update(slb_virtual_ports, defined_ports):
|
||||||
|
result = axapi_call(module, session_url + '&method=slb.virtual_server.update', json.dumps(json_post))
|
||||||
|
if axapi_failure(result):
|
||||||
|
module.fail_json(msg="failed to create the virtual server: %s" % result['response']['err']['msg'])
|
||||||
|
changed = True
|
||||||
|
|
||||||
|
# if we changed things, get the full info regarding
|
||||||
|
# the service group for the return data below
|
||||||
|
if changed:
|
||||||
|
result = axapi_call(module, session_url + '&method=slb.virtual_server.search', json.dumps({'name': slb_virtual}))
|
||||||
|
else:
|
||||||
|
result = slb_virtual_data
|
||||||
|
elif state == 'absent':
|
||||||
|
if slb_virtual_exists:
|
||||||
|
result = axapi_call(module, session_url + '&method=slb.virtual_server.delete', json.dumps({'name': slb_virtual}))
|
||||||
|
changed = True
|
||||||
|
else:
|
||||||
|
result = dict(msg="the virtual server was not present")
|
||||||
|
|
||||||
|
# if the config has changed, save the config unless otherwise requested
|
||||||
|
if changed and write_config:
|
||||||
|
write_result = axapi_call(module, session_url + '&method=system.action.write_memory')
|
||||||
|
if axapi_failure(write_result):
|
||||||
|
module.fail_json(msg="failed to save the configuration: %s" % write_result['response']['err']['msg'])
|
||||||
|
|
||||||
|
# log out of the session nicely and exit
|
||||||
|
axapi_call(module, session_url + '&method=session.close')
|
||||||
|
module.exit_json(changed=changed, content=result)
|
||||||
|
|
||||||
|
# standard ansible module imports
|
||||||
|
from ansible.module_utils.basic import *
|
||||||
|
from ansible.module_utils.urls import *
|
||||||
|
from ansible.module_utils.a10 import *
|
||||||
|
|
||||||
|
main()
|
||||||
|
|
Loading…
Reference in a new issue