cs_zone_facts: implement return facts as ansible returns (#36993)
This commit is contained in:
parent
d1eb4fe58c
commit
6578403288
3 changed files with 75 additions and 54 deletions
|
@ -631,3 +631,16 @@ class AnsibleCloudStack:
|
||||||
if 'tags' in resource:
|
if 'tags' in resource:
|
||||||
self.result['tags'] = resource['tags']
|
self.result['tags'] = resource['tags']
|
||||||
return self.result
|
return self.result
|
||||||
|
|
||||||
|
def get_result_and_facts(self, facts_name, resource):
|
||||||
|
result = self.get_result(resource)
|
||||||
|
|
||||||
|
ansible_facts = {
|
||||||
|
facts_name: result.copy()
|
||||||
|
}
|
||||||
|
for k in ['diff', 'changed']:
|
||||||
|
if k in ansible_facts[facts_name]:
|
||||||
|
del ansible_facts[facts_name][k]
|
||||||
|
|
||||||
|
result.update(ansible_facts=ansible_facts)
|
||||||
|
return result
|
||||||
|
|
|
@ -1,22 +1,8 @@
|
||||||
#!/usr/bin/python
|
#!/usr/bin/python
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
#
|
#
|
||||||
# (c) 2016, René Moser <mail@renemoser.net>
|
# Copyright (c) 2016, René Moser <mail@renemoser.net>
|
||||||
#
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||||
# 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/>.
|
|
||||||
|
|
||||||
ANSIBLE_METADATA = {'metadata_version': '1.1',
|
ANSIBLE_METADATA = {'metadata_version': '1.1',
|
||||||
'status': ['stableinterface'],
|
'status': ['stableinterface'],
|
||||||
|
@ -29,6 +15,7 @@ module: cs_zone_facts
|
||||||
short_description: Gathering facts of zones from Apache CloudStack based clouds.
|
short_description: Gathering facts of zones from Apache CloudStack based clouds.
|
||||||
description:
|
description:
|
||||||
- Gathering facts from the API of a zone.
|
- Gathering facts from the API of a zone.
|
||||||
|
- Sets Ansible facts accessable by the key C(cloudstack_zone) and since version 2.6 also returns results.
|
||||||
version_added: "2.1"
|
version_added: "2.1"
|
||||||
author: "René Moser (@resmo)"
|
author: "René Moser (@resmo)"
|
||||||
options:
|
options:
|
||||||
|
@ -41,102 +28,109 @@ extends_documentation_fragment: cloudstack
|
||||||
'''
|
'''
|
||||||
|
|
||||||
EXAMPLES = '''
|
EXAMPLES = '''
|
||||||
- cs_zone_facts:
|
- name: Gather facts from a zone
|
||||||
|
local_action:
|
||||||
|
module: cs_zone_facts
|
||||||
name: ch-gva-1
|
name: ch-gva-1
|
||||||
delegate_to: localhost
|
register: zone
|
||||||
|
|
||||||
- debug:
|
- name: Show the returned results of the registered variable
|
||||||
|
debug:
|
||||||
|
var: zone
|
||||||
|
|
||||||
|
- name: Show the facts by the ansible_facts key cloudstack_zone
|
||||||
|
debug:
|
||||||
var: cloudstack_zone
|
var: cloudstack_zone
|
||||||
'''
|
'''
|
||||||
|
|
||||||
RETURN = '''
|
RETURN = '''
|
||||||
---
|
---
|
||||||
cloudstack_zone.id:
|
id:
|
||||||
description: UUID of the zone.
|
description: UUID of the zone.
|
||||||
returned: success
|
returned: success
|
||||||
type: string
|
type: string
|
||||||
sample: 04589590-ac63-4ffc-93f5-b698b8ac38b6
|
sample: 04589590-ac63-4ffc-93f5-b698b8ac38b6
|
||||||
cloudstack_zone.name:
|
name:
|
||||||
description: Name of the zone.
|
description: Name of the zone.
|
||||||
returned: success
|
returned: success
|
||||||
type: string
|
type: string
|
||||||
sample: zone01
|
sample: zone01
|
||||||
cloudstack_zone.dns1:
|
dns1:
|
||||||
description: First DNS for the zone.
|
description: First DNS for the zone.
|
||||||
returned: success
|
returned: success
|
||||||
type: string
|
type: string
|
||||||
sample: 8.8.8.8
|
sample: 8.8.8.8
|
||||||
cloudstack_zone.dns2:
|
dns2:
|
||||||
description: Second DNS for the zone.
|
description: Second DNS for the zone.
|
||||||
returned: success
|
returned: success
|
||||||
type: string
|
type: string
|
||||||
sample: 8.8.4.4
|
sample: 8.8.4.4
|
||||||
cloudstack_zone.internal_dns1:
|
internal_dns1:
|
||||||
description: First internal DNS for the zone.
|
description: First internal DNS for the zone.
|
||||||
returned: success
|
returned: success
|
||||||
type: string
|
type: string
|
||||||
sample: 8.8.8.8
|
sample: 8.8.8.8
|
||||||
cloudstack_zone.internal_dns2:
|
internal_dns2:
|
||||||
description: Second internal DNS for the zone.
|
description: Second internal DNS for the zone.
|
||||||
returned: success
|
returned: success
|
||||||
type: string
|
type: string
|
||||||
sample: 8.8.4.4
|
sample: 8.8.4.4
|
||||||
cloudstack_zone.dns1_ipv6:
|
dns1_ipv6:
|
||||||
description: First IPv6 DNS for the zone.
|
description: First IPv6 DNS for the zone.
|
||||||
returned: success
|
returned: success
|
||||||
type: string
|
type: string
|
||||||
sample: "2001:4860:4860::8888"
|
sample: "2001:4860:4860::8888"
|
||||||
cloudstack_zone.dns2_ipv6:
|
dns2_ipv6:
|
||||||
description: Second IPv6 DNS for the zone.
|
description: Second IPv6 DNS for the zone.
|
||||||
returned: success
|
returned: success
|
||||||
type: string
|
type: string
|
||||||
sample: "2001:4860:4860::8844"
|
sample: "2001:4860:4860::8844"
|
||||||
cloudstack_zone.allocation_state:
|
allocation_state:
|
||||||
description: State of the zone.
|
description: State of the zone.
|
||||||
returned: success
|
returned: success
|
||||||
type: string
|
type: string
|
||||||
sample: Enabled
|
sample: Enabled
|
||||||
cloudstack_zone.domain:
|
domain:
|
||||||
description: Domain the zone is related to.
|
description: Domain the zone is related to.
|
||||||
returned: success
|
returned: success
|
||||||
type: string
|
type: string
|
||||||
sample: ROOT
|
sample: ROOT
|
||||||
cloudstack_zone.network_domain:
|
network_domain:
|
||||||
description: Network domain for the zone.
|
description: Network domain for the zone.
|
||||||
returned: success
|
returned: success
|
||||||
type: string
|
type: string
|
||||||
sample: example.com
|
sample: example.com
|
||||||
cloudstack_zone.network_type:
|
network_type:
|
||||||
description: Network type for the zone.
|
description: Network type for the zone.
|
||||||
returned: success
|
returned: success
|
||||||
type: string
|
type: string
|
||||||
sample: basic
|
sample: basic
|
||||||
cloudstack_zone.local_storage_enabled:
|
local_storage_enabled:
|
||||||
description: Local storage offering enabled.
|
description: Local storage offering enabled.
|
||||||
returned: success
|
returned: success
|
||||||
type: bool
|
type: bool
|
||||||
sample: false
|
sample: false
|
||||||
cloudstack_zone.securitygroups_enabled:
|
securitygroups_enabled:
|
||||||
description: Security groups support is enabled.
|
description: Security groups support is enabled.
|
||||||
returned: success
|
returned: success
|
||||||
type: bool
|
type: bool
|
||||||
sample: false
|
sample: false
|
||||||
cloudstack_zone.guest_cidr_address:
|
guest_cidr_address:
|
||||||
description: Guest CIDR address for the zone
|
description: Guest CIDR address for the zone
|
||||||
returned: success
|
returned: success
|
||||||
type: string
|
type: string
|
||||||
sample: 10.1.1.0/24
|
sample: 10.1.1.0/24
|
||||||
cloudstack_zone.dhcp_provider:
|
dhcp_provider:
|
||||||
description: DHCP provider for the zone
|
description: DHCP provider for the zone
|
||||||
returned: success
|
returned: success
|
||||||
type: string
|
type: string
|
||||||
sample: VirtualRouter
|
sample: VirtualRouter
|
||||||
cloudstack_zone.zone_token:
|
zone_token:
|
||||||
description: Zone token
|
description: Zone token
|
||||||
returned: success
|
returned: success
|
||||||
type: string
|
type: string
|
||||||
sample: ccb0a60c-79c8-3230-ab8b-8bdbe8c45bb7
|
sample: ccb0a60c-79c8-3230-ab8b-8bdbe8c45bb7
|
||||||
cloudstack_zone.tags:
|
tags:
|
||||||
description: List of resource tags associated with the zone.
|
description: List of resource tags associated with the zone.
|
||||||
returned: success
|
returned: success
|
||||||
type: dict
|
type: dict
|
||||||
|
@ -170,19 +164,9 @@ class AnsibleCloudStackZoneFacts(AnsibleCloudStack):
|
||||||
'allocationstate': 'allocation_state',
|
'allocationstate': 'allocation_state',
|
||||||
'zonetoken': 'zone_token',
|
'zonetoken': 'zone_token',
|
||||||
}
|
}
|
||||||
self.facts = {
|
|
||||||
'cloudstack_zone': None,
|
|
||||||
}
|
|
||||||
|
|
||||||
def get_zone(self):
|
def get_zone(self):
|
||||||
if not self.zone:
|
return super(AnsibleCloudStackZoneFacts, self).get_zone()
|
||||||
super(AnsibleCloudStackZoneFacts, self).get_zone()
|
|
||||||
return self.zone
|
|
||||||
|
|
||||||
def run(self):
|
|
||||||
zone = self.get_zone()
|
|
||||||
self.facts['cloudstack_zone'] = self.get_result(zone)
|
|
||||||
return self.facts
|
|
||||||
|
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
|
@ -196,10 +180,12 @@ def main():
|
||||||
supports_check_mode=True,
|
supports_check_mode=True,
|
||||||
)
|
)
|
||||||
|
|
||||||
cs_zone_facts = AnsibleCloudStackZoneFacts(module=module).run()
|
acs_zone_facts = AnsibleCloudStackZoneFacts(module=module)
|
||||||
cs_facts_result = dict(changed=False, ansible_facts=cs_zone_facts)
|
result = acs_zone_facts.get_result_and_facts(
|
||||||
|
facts_name='cloudstack_zone',
|
||||||
module.exit_json(**cs_facts_result)
|
resource=acs_zone_facts.get_zone()
|
||||||
|
)
|
||||||
|
module.exit_json(**result)
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
|
|
|
@ -15,12 +15,23 @@
|
||||||
cs_zone_facts:
|
cs_zone_facts:
|
||||||
name: "{{ cs_resource_prefix }}-zone"
|
name: "{{ cs_resource_prefix }}-zone"
|
||||||
register: zone
|
register: zone
|
||||||
check_mode: true
|
check_mode: yes
|
||||||
- name: verify get facts from zone in check mode
|
- name: verify get facts from zone in check mode
|
||||||
assert:
|
assert:
|
||||||
that:
|
that:
|
||||||
- zone is successful
|
- zone is successful
|
||||||
- zone is not changed
|
- zone is not changed
|
||||||
|
- zone.dns1 == "8.8.8.8"
|
||||||
|
- zone.dns2 == "8.8.4.4"
|
||||||
|
- zone.internal_dns1 == "8.8.8.8"
|
||||||
|
- zone.internal_dns2 == "8.8.4.4"
|
||||||
|
- zone.local_storage_enabled == false
|
||||||
|
- zone.network_type == "Basic"
|
||||||
|
- zone.zone_token != ""
|
||||||
|
- zone.securitygroups_enabled == true
|
||||||
|
- zone.dhcp_provider == "VirtualRouter"
|
||||||
|
- zone.local_storage_enabled == false
|
||||||
|
# Ansible Facts
|
||||||
- cloudstack_zone.dns1 == "8.8.8.8"
|
- cloudstack_zone.dns1 == "8.8.8.8"
|
||||||
- cloudstack_zone.dns2 == "8.8.4.4"
|
- cloudstack_zone.dns2 == "8.8.4.4"
|
||||||
- cloudstack_zone.internal_dns1 == "8.8.8.8"
|
- cloudstack_zone.internal_dns1 == "8.8.8.8"
|
||||||
|
@ -41,6 +52,17 @@
|
||||||
that:
|
that:
|
||||||
- zone is successful
|
- zone is successful
|
||||||
- zone is not changed
|
- zone is not changed
|
||||||
|
- zone.dns1 == "8.8.8.8"
|
||||||
|
- zone.dns2 == "8.8.4.4"
|
||||||
|
- zone.internal_dns1 == "8.8.8.8"
|
||||||
|
- zone.internal_dns2 == "8.8.4.4"
|
||||||
|
- zone.local_storage_enabled == false
|
||||||
|
- zone.network_type == "Basic"
|
||||||
|
- zone.zone_token != ""
|
||||||
|
- zone.securitygroups_enabled == true
|
||||||
|
- zone.dhcp_provider == "VirtualRouter"
|
||||||
|
- zone.local_storage_enabled == false
|
||||||
|
# Ansible Facts
|
||||||
- cloudstack_zone.dns1 == "8.8.8.8"
|
- cloudstack_zone.dns1 == "8.8.8.8"
|
||||||
- cloudstack_zone.dns2 == "8.8.4.4"
|
- cloudstack_zone.dns2 == "8.8.4.4"
|
||||||
- cloudstack_zone.internal_dns1 == "8.8.8.8"
|
- cloudstack_zone.internal_dns1 == "8.8.8.8"
|
||||||
|
|
Loading…
Reference in a new issue