Return a list of OpenStack clouds
The main use of this is to feed jinja templating, so structure the data returned slightly better for that purpose.
This commit is contained in:
parent
718c13bdf2
commit
ce556a053e
1 changed files with 9 additions and 22 deletions
|
@ -24,43 +24,30 @@ module: os_client_config
|
||||||
short_description: Get OpenStack Client config
|
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
|
||||||
options:
|
|
||||||
regions:
|
|
||||||
description:
|
|
||||||
- Include regions in the returned data
|
|
||||||
required: false
|
|
||||||
default: 'yes'
|
|
||||||
version_added: "2.0"
|
version_added: "2.0"
|
||||||
requirements: [ os-client-config ]
|
requirements: [ os-client-config ]
|
||||||
author: Monty Taylor
|
author: Monty Taylor
|
||||||
'''
|
'''
|
||||||
|
|
||||||
EXAMPLES = '''
|
EXAMPLES = '''
|
||||||
# Inject facts about OpenStack clouds
|
# Get list of clouds that do not support security groups
|
||||||
- os-client-config
|
- os-client-config:
|
||||||
|
- debug: var={{ item }}
|
||||||
|
with_items: "{{ openstack.clouds|rejectattr('secgroup_source', 'none')|list() }}"
|
||||||
'''
|
'''
|
||||||
|
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
module = AnsibleModule(
|
module = AnsibleModule()
|
||||||
argument_spec=dict(
|
|
||||||
regions = dict(default=True, required=False, type='bool'),
|
|
||||||
action = dict(default='list', choices=['list']),
|
|
||||||
),
|
|
||||||
)
|
|
||||||
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():
|
||||||
if p['regions']:
|
cloud.config['name'] = cloud.name
|
||||||
cloud_region = clouds.get(cloud.name, {})
|
clouds.append(cloud.config)
|
||||||
cloud_region[cloud.region] = cloud.config
|
module.exit_json(ansible_facts=dict(openstack=dict(clouds=clouds)))
|
||||||
clouds[cloud.name] = cloud_region
|
|
||||||
else:
|
|
||||||
clouds[cloud.name] = cloud.config
|
|
||||||
module.exit_json(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