mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-14 16:05:04 +00:00
Initial commit
This commit is contained in:
commit
aebc1b03fd
4861 changed files with 812621 additions and 0 deletions
285
plugins/modules/network/a10/a10_server.py
Normal file
285
plugins/modules/network/a10/a10_server.py
Normal file
|
|
@ -0,0 +1,285 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
# (c) 2014, Mischa Peters <mpeters@a10networks.com>,
|
||||
# (c) 2016, Eric Chou <ericc@a10networks.com>
|
||||
#
|
||||
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||
|
||||
from __future__ import absolute_import, division, print_function
|
||||
__metaclass__ = type
|
||||
|
||||
|
||||
ANSIBLE_METADATA = {'metadata_version': '1.1',
|
||||
'status': ['preview'],
|
||||
'supported_by': 'community'}
|
||||
|
||||
|
||||
DOCUMENTATION = '''
|
||||
---
|
||||
module: a10_server
|
||||
short_description: Manage A10 Networks AX/SoftAX/Thunder/vThunder devices' server object.
|
||||
description:
|
||||
- Manage SLB (Server Load Balancer) server objects on A10 Networks devices via aXAPIv2.
|
||||
author:
|
||||
- Eric Chou (@ericchou1)
|
||||
- Mischa Peters (@mischapeters)
|
||||
notes:
|
||||
- Requires A10 Networks aXAPI 2.1.
|
||||
extends_documentation_fragment:
|
||||
- community.general.a10
|
||||
- url
|
||||
|
||||
options:
|
||||
partition:
|
||||
description:
|
||||
- set active-partition
|
||||
server_name:
|
||||
description:
|
||||
- The SLB (Server Load Balancer) server name.
|
||||
required: true
|
||||
aliases: ['server']
|
||||
server_ip:
|
||||
description:
|
||||
- The SLB server IPv4 address.
|
||||
aliases: ['ip', 'address']
|
||||
server_status:
|
||||
description:
|
||||
- The SLB virtual server status.
|
||||
default: enabled
|
||||
aliases: ['status']
|
||||
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).
|
||||
aliases: ['port']
|
||||
state:
|
||||
description:
|
||||
- This is to specify the operation to create, update or remove SLB server.
|
||||
default: present
|
||||
choices: ['present', 'absent']
|
||||
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.
|
||||
type: bool
|
||||
default: 'yes'
|
||||
|
||||
'''
|
||||
|
||||
EXAMPLES = '''
|
||||
# Create a new server
|
||||
- a10_server:
|
||||
host: a10.mydomain.com
|
||||
username: myadmin
|
||||
password: mypassword
|
||||
partition: mypartition
|
||||
server: test
|
||||
server_ip: 1.1.1.100
|
||||
server_ports:
|
||||
- port_num: 8080
|
||||
protocol: tcp
|
||||
- port_num: 8443
|
||||
protocol: TCP
|
||||
|
||||
'''
|
||||
|
||||
RETURN = '''
|
||||
content:
|
||||
description: the full info regarding the slb_server
|
||||
returned: success
|
||||
type: str
|
||||
sample: "mynewserver"
|
||||
'''
|
||||
import json
|
||||
|
||||
from ansible_collections.community.general.plugins.module_utils.network.a10.a10 import (axapi_call, a10_argument_spec, axapi_authenticate, axapi_failure, axapi_get_port_protocol,
|
||||
axapi_enabled_disabled, AXAPI_PORT_PROTOCOLS)
|
||||
from ansible.module_utils.basic import AnsibleModule
|
||||
from ansible.module_utils.urls import url_argument_spec
|
||||
|
||||
|
||||
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)))
|
||||
|
||||
# validate the port number is present and an integer
|
||||
if 'port_num' in item:
|
||||
try:
|
||||
item['port_num'] = int(item['port_num'])
|
||||
except Exception:
|
||||
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))
|
||||
|
||||
# convert the status to the internal API integer value
|
||||
if 'status' in item:
|
||||
item['status'] = axapi_enabled_disabled(item['status'])
|
||||
else:
|
||||
item['status'] = 1
|
||||
|
||||
|
||||
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']),
|
||||
server_name=dict(type='str', aliases=['server'], required=True),
|
||||
server_ip=dict(type='str', aliases=['ip', 'address']),
|
||||
server_status=dict(type='str', default='enabled', aliases=['status'], choices=['enabled', 'disabled']),
|
||||
server_ports=dict(type='list', aliases=['port'], default=[]),
|
||||
partition=dict(type='str', default=[]),
|
||||
)
|
||||
)
|
||||
|
||||
module = AnsibleModule(
|
||||
argument_spec=argument_spec,
|
||||
supports_check_mode=False
|
||||
)
|
||||
|
||||
host = module.params['host']
|
||||
partition = module.params['partition']
|
||||
username = module.params['username']
|
||||
password = module.params['password']
|
||||
state = module.params['state']
|
||||
write_config = module.params['write_config']
|
||||
slb_server = module.params['server_name']
|
||||
slb_server_ip = module.params['server_ip']
|
||||
slb_server_status = module.params['server_status']
|
||||
slb_server_ports = module.params['server_ports']
|
||||
|
||||
if slb_server is None:
|
||||
module.fail_json(msg='server_name is required')
|
||||
|
||||
axapi_base_url = 'https://%s/services/rest/V2.1/?format=json' % host
|
||||
session_url = axapi_authenticate(module, axapi_base_url, username, password)
|
||||
|
||||
# validate the ports data structure
|
||||
validate_ports(module, slb_server_ports)
|
||||
|
||||
json_post = {
|
||||
'server': {
|
||||
'name': slb_server,
|
||||
}
|
||||
}
|
||||
|
||||
# add optional module parameters
|
||||
if slb_server_ip:
|
||||
json_post['server']['host'] = slb_server_ip
|
||||
|
||||
if slb_server_ports:
|
||||
json_post['server']['port_list'] = slb_server_ports
|
||||
|
||||
if slb_server_status:
|
||||
json_post['server']['status'] = axapi_enabled_disabled(slb_server_status)
|
||||
|
||||
axapi_call(module, session_url + '&method=system.partition.active', json.dumps({'name': partition}))
|
||||
|
||||
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 not slb_server_exists:
|
||||
if not slb_server_ip:
|
||||
module.fail_json(msg='you must specify an IP address when creating a server')
|
||||
|
||||
result = axapi_call(module, session_url + '&method=slb.server.create', json.dumps(json_post))
|
||||
if axapi_failure(result):
|
||||
module.fail_json(msg="failed to create the server: %s" % result['response']['err']['msg'])
|
||||
changed = True
|
||||
else:
|
||||
def port_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_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
|
||||
|
||||
def status_needs_update(current_status, new_status):
|
||||
'''
|
||||
Check to determine if we want to change the status of a server.
|
||||
If there is a difference between the current status of the server and
|
||||
the desired status, return true, otherwise false.
|
||||
'''
|
||||
if current_status != new_status:
|
||||
return True
|
||||
return False
|
||||
|
||||
defined_ports = slb_server_data.get('server', {}).get('port_list', [])
|
||||
current_status = slb_server_data.get('server', {}).get('status')
|
||||
|
||||
# we check for a needed update several ways
|
||||
# - in case ports are missing from the ones specified by the user
|
||||
# - in case ports are missing from those on the device
|
||||
# - in case we are change the status of a server
|
||||
if (port_needs_update(defined_ports, slb_server_ports) or
|
||||
port_needs_update(slb_server_ports, defined_ports) or
|
||||
status_needs_update(current_status, axapi_enabled_disabled(slb_server_status))):
|
||||
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
|
||||
|
||||
# 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.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 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)
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
main()
|
||||
244
plugins/modules/network/a10/a10_server_axapi3.py
Normal file
244
plugins/modules/network/a10/a10_server_axapi3.py
Normal file
|
|
@ -0,0 +1,244 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
# Copyright: (c) 2014, Mischa Peters <mpeters@a10networks.com>
|
||||
# Copyright: (c) 2016, Eric Chou <ericc@a10networks.com>
|
||||
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||
|
||||
from __future__ import absolute_import, division, print_function
|
||||
__metaclass__ = type
|
||||
|
||||
|
||||
ANSIBLE_METADATA = {'metadata_version': '1.1',
|
||||
'status': ['preview'],
|
||||
'supported_by': 'community'}
|
||||
|
||||
|
||||
DOCUMENTATION = '''
|
||||
---
|
||||
module: a10_server_axapi3
|
||||
short_description: Manage A10 Networks AX/SoftAX/Thunder/vThunder devices
|
||||
description:
|
||||
- Manage SLB (Server Load Balancer) server objects on A10 Networks devices via aXAPIv3.
|
||||
author:
|
||||
- Eric Chou (@ericchou1)
|
||||
extends_documentation_fragment:
|
||||
- community.general.a10
|
||||
- url
|
||||
|
||||
options:
|
||||
server_name:
|
||||
description:
|
||||
- The SLB (Server Load Balancer) server name.
|
||||
required: true
|
||||
aliases: ['server']
|
||||
server_ip:
|
||||
description:
|
||||
- The SLB (Server Load Balancer) server IPv4 address.
|
||||
required: true
|
||||
aliases: ['ip', 'address']
|
||||
server_status:
|
||||
description:
|
||||
- The SLB (Server Load Balancer) virtual server status.
|
||||
default: enable
|
||||
aliases: ['action']
|
||||
choices: ['enable', 'disable']
|
||||
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:).
|
||||
aliases: ['port']
|
||||
operation:
|
||||
description:
|
||||
- Create, Update or Remove SLB server. For create and update operation, we use the IP address and server
|
||||
name specified in the POST message. For delete operation, we use the server name in the request URI.
|
||||
default: create
|
||||
choices: ['create', 'update', 'remove']
|
||||
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.
|
||||
type: bool
|
||||
default: 'yes'
|
||||
|
||||
'''
|
||||
|
||||
RETURN = '''
|
||||
#
|
||||
'''
|
||||
|
||||
EXAMPLES = '''
|
||||
# Create a new server
|
||||
- a10_server:
|
||||
host: a10.mydomain.com
|
||||
username: myadmin
|
||||
password: mypassword
|
||||
server: test
|
||||
server_ip: 1.1.1.100
|
||||
validate_certs: false
|
||||
server_status: enable
|
||||
write_config: yes
|
||||
operation: create
|
||||
server_ports:
|
||||
- port-number: 8080
|
||||
protocol: tcp
|
||||
action: enable
|
||||
- port-number: 8443
|
||||
protocol: TCP
|
||||
|
||||
'''
|
||||
import json
|
||||
|
||||
from ansible_collections.community.general.plugins.module_utils.network.a10.a10 import axapi_call_v3, a10_argument_spec, axapi_authenticate_v3, axapi_failure
|
||||
from ansible_collections.community.general.plugins.module_utils.network.a10.a10 import AXAPI_PORT_PROTOCOLS
|
||||
from ansible.module_utils.basic import AnsibleModule
|
||||
from ansible.module_utils.urls import url_argument_spec
|
||||
|
||||
|
||||
VALID_PORT_FIELDS = ['port-number', 'protocol', 'action']
|
||||
|
||||
|
||||
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-number' in item:
|
||||
try:
|
||||
item['port-number'] = int(item['port-number'])
|
||||
except Exception:
|
||||
module.fail_json(msg="port-number entries in the port definitions must be integers")
|
||||
else:
|
||||
module.fail_json(msg="port definitions must define the port-number field")
|
||||
|
||||
# validate the port protocol is present, no need to convert to the internal API integer value in v3
|
||||
if 'protocol' in item:
|
||||
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))
|
||||
|
||||
# 'status' is 'action' in AXAPIv3
|
||||
# no need to convert the status, a.k.a action, to the internal API integer value in v3
|
||||
# action is either enabled or disabled
|
||||
if 'action' in item:
|
||||
action = item['action']
|
||||
if action not in ['enable', 'disable']:
|
||||
module.fail_json(msg="server action must be enable or disable")
|
||||
else:
|
||||
item['action'] = 'enable'
|
||||
|
||||
|
||||
def main():
|
||||
argument_spec = a10_argument_spec()
|
||||
argument_spec.update(url_argument_spec())
|
||||
argument_spec.update(
|
||||
dict(
|
||||
operation=dict(type='str', default='create', choices=['create', 'update', 'delete']),
|
||||
server_name=dict(type='str', aliases=['server'], required=True),
|
||||
server_ip=dict(type='str', aliases=['ip', 'address'], required=True),
|
||||
server_status=dict(type='str', default='enable', aliases=['action'], choices=['enable', 'disable']),
|
||||
server_ports=dict(type='list', aliases=['port'], default=[]),
|
||||
)
|
||||
)
|
||||
|
||||
module = AnsibleModule(
|
||||
argument_spec=argument_spec,
|
||||
supports_check_mode=False
|
||||
)
|
||||
|
||||
host = module.params['host']
|
||||
username = module.params['username']
|
||||
password = module.params['password']
|
||||
operation = module.params['operation']
|
||||
write_config = module.params['write_config']
|
||||
slb_server = module.params['server_name']
|
||||
slb_server_ip = module.params['server_ip']
|
||||
slb_server_status = module.params['server_status']
|
||||
slb_server_ports = module.params['server_ports']
|
||||
|
||||
axapi_base_url = 'https://{0}/axapi/v3/'.format(host)
|
||||
axapi_auth_url = axapi_base_url + 'auth/'
|
||||
signature = axapi_authenticate_v3(module, axapi_auth_url, username, password)
|
||||
|
||||
# validate the ports data structure
|
||||
validate_ports(module, slb_server_ports)
|
||||
|
||||
json_post = {
|
||||
"server-list": [
|
||||
{
|
||||
"name": slb_server,
|
||||
"host": slb_server_ip
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
# add optional module parameters
|
||||
if slb_server_ports:
|
||||
json_post['server-list'][0]['port-list'] = slb_server_ports
|
||||
|
||||
if slb_server_status:
|
||||
json_post['server-list'][0]['action'] = slb_server_status
|
||||
|
||||
slb_server_data = axapi_call_v3(module, axapi_base_url + 'slb/server/', method='GET', body='', signature=signature)
|
||||
|
||||
# for empty slb server list
|
||||
if axapi_failure(slb_server_data):
|
||||
slb_server_exists = False
|
||||
else:
|
||||
slb_server_list = [server['name'] for server in slb_server_data['server-list']]
|
||||
if slb_server in slb_server_list:
|
||||
slb_server_exists = True
|
||||
else:
|
||||
slb_server_exists = False
|
||||
|
||||
changed = False
|
||||
if operation == 'create':
|
||||
if slb_server_exists is False:
|
||||
result = axapi_call_v3(module, axapi_base_url + 'slb/server/', method='POST', body=json.dumps(json_post), signature=signature)
|
||||
if axapi_failure(result):
|
||||
module.fail_json(msg="failed to create the server: %s" % result['response']['err']['msg'])
|
||||
changed = True
|
||||
else:
|
||||
module.fail_json(msg="server already exists, use state='update' instead")
|
||||
changed = False
|
||||
# if we changed things, get the full info regarding result
|
||||
if changed:
|
||||
result = axapi_call_v3(module, axapi_base_url + 'slb/server/' + slb_server, method='GET', body='', signature=signature)
|
||||
else:
|
||||
result = slb_server_data
|
||||
elif operation == 'delete':
|
||||
if slb_server_exists:
|
||||
result = axapi_call_v3(module, axapi_base_url + 'slb/server/' + slb_server, method='DELETE', body='', signature=signature)
|
||||
if axapi_failure(result):
|
||||
module.fail_json(msg="failed to delete server: %s" % result['response']['err']['msg'])
|
||||
changed = True
|
||||
else:
|
||||
result = dict(msg="the server was not present")
|
||||
elif operation == 'update':
|
||||
if slb_server_exists:
|
||||
result = axapi_call_v3(module, axapi_base_url + 'slb/server/', method='PUT', body=json.dumps(json_post), signature=signature)
|
||||
if axapi_failure(result):
|
||||
module.fail_json(msg="failed to update server: %s" % result['response']['err']['msg'])
|
||||
changed = True
|
||||
else:
|
||||
result = dict(msg="the server was not present")
|
||||
|
||||
# if the config has changed, save the config unless otherwise requested
|
||||
if changed and write_config:
|
||||
write_result = axapi_call_v3(module, axapi_base_url + 'write/memory/', method='POST', body='', signature=signature)
|
||||
if axapi_failure(write_result):
|
||||
module.fail_json(msg="failed to save the configuration: %s" % write_result['response']['err']['msg'])
|
||||
|
||||
# log out gracefully and exit
|
||||
axapi_call_v3(module, axapi_base_url + 'logoff/', method='POST', body='', signature=signature)
|
||||
module.exit_json(changed=changed, content=result)
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
main()
|
||||
337
plugins/modules/network/a10/a10_service_group.py
Normal file
337
plugins/modules/network/a10/a10_service_group.py
Normal file
|
|
@ -0,0 +1,337 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
# (c) 2014, Mischa Peters <mpeters@a10networks.com>,
|
||||
# Eric Chou <ericc@a10networks.com>
|
||||
#
|
||||
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||
|
||||
from __future__ import absolute_import, division, print_function
|
||||
__metaclass__ = type
|
||||
|
||||
|
||||
ANSIBLE_METADATA = {'metadata_version': '1.1',
|
||||
'status': ['preview'],
|
||||
'supported_by': 'community'}
|
||||
|
||||
|
||||
DOCUMENTATION = '''
|
||||
---
|
||||
module: a10_service_group
|
||||
short_description: Manage A10 Networks AX/SoftAX/Thunder/vThunder devices' service groups.
|
||||
description:
|
||||
- Manage SLB (Server Load Balancing) service-group objects on A10 Networks devices via aXAPIv2.
|
||||
author:
|
||||
- Eric Chou (@ericchou1)
|
||||
- Mischa Peters (@mischapeters)
|
||||
notes:
|
||||
- Requires A10 Networks aXAPI 2.1.
|
||||
- When a server doesn't exist and is added to the service-group the server will be created.
|
||||
extends_documentation_fragment:
|
||||
- community.general.a10
|
||||
- url
|
||||
|
||||
options:
|
||||
state:
|
||||
description:
|
||||
- If the specified service group should exists.
|
||||
default: present
|
||||
choices: ['present', 'absent']
|
||||
partition:
|
||||
description:
|
||||
- set active-partition
|
||||
service_group:
|
||||
description:
|
||||
- The SLB (Server Load Balancing) service-group name
|
||||
required: true
|
||||
aliases: ['service', 'pool', 'group']
|
||||
service_group_protocol:
|
||||
description:
|
||||
- The SLB service-group protocol of TCP or UDP.
|
||||
default: tcp
|
||||
aliases: ['proto', 'protocol']
|
||||
choices: ['tcp', 'udp']
|
||||
service_group_method:
|
||||
description:
|
||||
- The SLB service-group load balancing method, such as round-robin or weighted-rr.
|
||||
default: round-robin
|
||||
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'
|
||||
servers:
|
||||
description:
|
||||
- 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.
|
||||
aliases: ['server', 'member']
|
||||
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.
|
||||
type: bool
|
||||
default: 'yes'
|
||||
|
||||
'''
|
||||
|
||||
EXAMPLES = '''
|
||||
# Create a new service-group
|
||||
- a10_service_group:
|
||||
host: a10.mydomain.com
|
||||
username: myadmin
|
||||
password: mypassword
|
||||
partition: mypartition
|
||||
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
|
||||
|
||||
'''
|
||||
|
||||
RETURN = '''
|
||||
content:
|
||||
description: the full info regarding the slb_service_group
|
||||
returned: success
|
||||
type: str
|
||||
sample: "mynewservicegroup"
|
||||
'''
|
||||
import json
|
||||
|
||||
from ansible_collections.community.general.plugins.module_utils.network.a10.a10 import (axapi_call, a10_argument_spec, axapi_authenticate, axapi_failure, axapi_enabled_disabled)
|
||||
from ansible.module_utils.basic import AnsibleModule
|
||||
from ansible.module_utils.urls import url_argument_spec
|
||||
|
||||
|
||||
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)))
|
||||
|
||||
# validate the server name is present
|
||||
if 'server' not in item:
|
||||
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 Exception:
|
||||
module.fail_json(msg="server port definitions must be integers")
|
||||
else:
|
||||
module.fail_json(msg="server definitions must define the port field")
|
||||
|
||||
# convert the status to the internal API integer value
|
||||
if 'status' in item:
|
||||
item['status'] = axapi_enabled_disabled(item['status'])
|
||||
else:
|
||||
item['status'] = 1
|
||||
|
||||
|
||||
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']),
|
||||
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',
|
||||
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']),
|
||||
servers=dict(type='list', aliases=['server', 'member'], default=[]),
|
||||
partition=dict(type='str', default=[]),
|
||||
)
|
||||
)
|
||||
|
||||
module = AnsibleModule(
|
||||
argument_spec=argument_spec,
|
||||
supports_check_mode=False
|
||||
)
|
||||
|
||||
host = module.params['host']
|
||||
username = module.params['username']
|
||||
password = module.params['password']
|
||||
partition = module.params['partition']
|
||||
state = module.params['state']
|
||||
write_config = module.params['write_config']
|
||||
slb_service_group = module.params['service_group']
|
||||
slb_service_group_proto = module.params['service_group_protocol']
|
||||
slb_service_group_method = module.params['service_group_method']
|
||||
slb_servers = module.params['servers']
|
||||
|
||||
if slb_service_group is None:
|
||||
module.fail_json(msg='service_group is required')
|
||||
|
||||
axapi_base_url = 'https://' + host + '/services/rest/V2.1/?format=json'
|
||||
load_balancing_methods = {'round-robin': 0,
|
||||
'weighted-rr': 1,
|
||||
'least-connection': 2,
|
||||
'weighted-least-connection': 3,
|
||||
'service-least-connection': 4,
|
||||
'service-weighted-least-connection': 5,
|
||||
'fastest-response': 6,
|
||||
'least-request': 7,
|
||||
'round-robin-strict': 8,
|
||||
'src-ip-only-hash': 14,
|
||||
'src-ip-hash': 15}
|
||||
|
||||
if not slb_service_group_proto or slb_service_group_proto.lower() == 'tcp':
|
||||
protocol = 2
|
||||
else:
|
||||
protocol = 3
|
||||
|
||||
# validate the server data list structure
|
||||
validate_servers(module, slb_servers)
|
||||
|
||||
json_post = {
|
||||
'service_group': {
|
||||
'name': slb_service_group,
|
||||
'protocol': protocol,
|
||||
'lb_method': load_balancing_methods[slb_service_group_method],
|
||||
}
|
||||
}
|
||||
|
||||
# first we authenticate to get a session id
|
||||
session_url = axapi_authenticate(module, axapi_base_url, username, password)
|
||||
# then we select the active-partition
|
||||
axapi_call(module, session_url + '&method=system.partition.active', json.dumps({'name': partition}))
|
||||
# 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':
|
||||
# before creating/updating we need to validate that servers
|
||||
# defined in the servers list exist to prevent errors
|
||||
checked_servers = []
|
||||
for server in slb_servers:
|
||||
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 not slb_service_group_exist:
|
||||
result = axapi_call(module, session_url + '&method=slb.service_group.create', json.dumps(json_post))
|
||||
if axapi_failure(result):
|
||||
module.fail_json(msg=result['response']['err']['msg'])
|
||||
changed = True
|
||||
else:
|
||||
# check to see if the service group definition without the
|
||||
# server members is different, and update that individually
|
||||
# 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 do_update:
|
||||
result = axapi_call(module, session_url + '&method=slb.service_group.update', json.dumps(json_post))
|
||||
if axapi_failure(result):
|
||||
module.fail_json(msg=result['response']['err']['msg'])
|
||||
changed = True
|
||||
|
||||
# next we pull the defined list of servers out of the returned
|
||||
# results to make it a bit easier to iterate over
|
||||
defined_servers = slb_result.get('service_group', {}).get('member_list', [])
|
||||
|
||||
# next we add/update new member servers from the user-specified
|
||||
# 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
|
||||
|
||||
# finally, remove any servers that are on the target
|
||||
# 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
|
||||
|
||||
# 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)
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
main()
|
||||
283
plugins/modules/network/a10/a10_virtual_server.py
Normal file
283
plugins/modules/network/a10/a10_virtual_server.py
Normal file
|
|
@ -0,0 +1,283 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
# (c) 2014, Mischa Peters <mpeters@a10networks.com>,
|
||||
# Eric Chou <ericc@a10networks.com>
|
||||
#
|
||||
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||
|
||||
from __future__ import absolute_import, division, print_function
|
||||
__metaclass__ = type
|
||||
|
||||
|
||||
ANSIBLE_METADATA = {'metadata_version': '1.1',
|
||||
'status': ['preview'],
|
||||
'supported_by': 'community'}
|
||||
|
||||
|
||||
DOCUMENTATION = '''
|
||||
---
|
||||
module: a10_virtual_server
|
||||
short_description: Manage A10 Networks AX/SoftAX/Thunder/vThunder devices' virtual servers.
|
||||
description:
|
||||
- Manage SLB (Server Load Balancing) virtual server objects on A10 Networks devices via aXAPIv2.
|
||||
author:
|
||||
- Eric Chou (@ericchou1)
|
||||
- Mischa Peters (@mischapeters)
|
||||
notes:
|
||||
- Requires A10 Networks aXAPI 2.1.
|
||||
extends_documentation_fragment:
|
||||
- community.general.a10
|
||||
- url
|
||||
|
||||
options:
|
||||
state:
|
||||
description:
|
||||
- If the specified virtual server should exist.
|
||||
choices: ['present', 'absent']
|
||||
default: present
|
||||
partition:
|
||||
description:
|
||||
- set active-partition
|
||||
virtual_server:
|
||||
description:
|
||||
- The SLB (Server Load Balancing) virtual server name.
|
||||
required: true
|
||||
aliases: ['vip', 'virtual']
|
||||
virtual_server_ip:
|
||||
description:
|
||||
- The SLB virtual server IPv4 address.
|
||||
aliases: ['ip', 'address']
|
||||
virtual_server_status:
|
||||
description:
|
||||
- The SLB virtual server status, such as enabled or disabled.
|
||||
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).
|
||||
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.
|
||||
type: bool
|
||||
default: 'yes'
|
||||
|
||||
'''
|
||||
|
||||
|
||||
EXAMPLES = '''
|
||||
# Create a new virtual server
|
||||
- a10_virtual_server:
|
||||
host: a10.mydomain.com
|
||||
username: myadmin
|
||||
password: mypassword
|
||||
partition: mypartition
|
||||
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
|
||||
|
||||
'''
|
||||
|
||||
RETURN = '''
|
||||
content:
|
||||
description: the full info regarding the slb_virtual
|
||||
returned: success
|
||||
type: str
|
||||
sample: "mynewvirtualserver"
|
||||
'''
|
||||
import json
|
||||
|
||||
from ansible_collections.community.general.plugins.module_utils.network.a10.a10 import (axapi_call, a10_argument_spec, axapi_authenticate, axapi_failure,
|
||||
axapi_enabled_disabled, axapi_get_vport_protocol, AXAPI_VPORT_PROTOCOLS)
|
||||
from ansible.module_utils.basic import AnsibleModule
|
||||
from ansible.module_utils.urls import url_argument_spec
|
||||
|
||||
|
||||
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 Exception:
|
||||
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),
|
||||
partition=dict(type='str', default=[]),
|
||||
)
|
||||
)
|
||||
|
||||
module = AnsibleModule(
|
||||
argument_spec=argument_spec,
|
||||
supports_check_mode=False
|
||||
)
|
||||
|
||||
host = module.params['host']
|
||||
username = module.params['username']
|
||||
password = module.params['password']
|
||||
partition = module.params['partition']
|
||||
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)
|
||||
|
||||
axapi_call(module, session_url + '&method=system.partition.active', json.dumps({'name': partition}))
|
||||
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)
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
main()
|
||||
Loading…
Add table
Add a link
Reference in a new issue