mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Add filter ability
This commit is contained in:
parent
f11c451bfa
commit
377311db56
1 changed files with 20 additions and 3 deletions
|
@ -25,6 +25,15 @@ short_description: Get OpenStack Client config
|
||||||
description:
|
description:
|
||||||
- Get I(openstack) client config data from clouds.yaml or environment
|
- Get I(openstack) client config data from clouds.yaml or environment
|
||||||
version_added: "2.0"
|
version_added: "2.0"
|
||||||
|
notes:
|
||||||
|
- Facts are placed in the C(openstack.clouds) variable.
|
||||||
|
options:
|
||||||
|
clouds:
|
||||||
|
description:
|
||||||
|
- List of clouds to limit the return list to. No value means return
|
||||||
|
information on all configured clouds
|
||||||
|
required: false
|
||||||
|
default: []
|
||||||
requirements: [ os-client-config ]
|
requirements: [ os-client-config ]
|
||||||
author: "Monty Taylor (@emonty)"
|
author: "Monty Taylor (@emonty)"
|
||||||
'''
|
'''
|
||||||
|
@ -34,19 +43,27 @@ EXAMPLES = '''
|
||||||
- os-client-config:
|
- os-client-config:
|
||||||
- debug: var={{ item }}
|
- debug: var={{ item }}
|
||||||
with_items: "{{ openstack.clouds|rejectattr('secgroup_source', 'none')|list() }}"
|
with_items: "{{ openstack.clouds|rejectattr('secgroup_source', 'none')|list() }}"
|
||||||
|
|
||||||
|
# Get the information back just about the mordred cloud
|
||||||
|
- os-client-config:
|
||||||
|
clouds:
|
||||||
|
- mordred
|
||||||
'''
|
'''
|
||||||
|
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
module = AnsibleModule({})
|
module = AnsibleModule({
|
||||||
|
clouds=dict(required=False, default=[]),
|
||||||
|
})
|
||||||
p = module.params
|
p = module.params
|
||||||
|
|
||||||
try:
|
try:
|
||||||
config = os_client_config.OpenStackConfig()
|
config = os_client_config.OpenStackConfig()
|
||||||
clouds = []
|
clouds = []
|
||||||
for cloud in config.get_all_clouds():
|
for cloud in config.get_all_clouds():
|
||||||
cloud.config['name'] = cloud.name
|
if not module.params['clouds'] or cloud.name in module.param['clouds']:
|
||||||
clouds.append(cloud.config)
|
cloud.config['name'] = cloud.name
|
||||||
|
clouds.append(cloud.config)
|
||||||
module.exit_json(ansible_facts=dict(openstack=dict(clouds=clouds)))
|
module.exit_json(ansible_facts=dict(openstack=dict(clouds=clouds)))
|
||||||
except exceptions.OpenStackConfigException as e:
|
except exceptions.OpenStackConfigException as e:
|
||||||
module.fail_json(msg=str(e))
|
module.fail_json(msg=str(e))
|
||||||
|
|
Loading…
Reference in a new issue