2020-05-12 10:20:09 -05:00
|
|
|
#!/usr/bin/python
|
|
|
|
# Copyright (c) 2016 Hewlett-Packard Enterprise Corporation
|
|
|
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
|
|
|
|
|
|
DOCUMENTATION = '''
|
|
|
|
---
|
|
|
|
module: identity_domain_info
|
|
|
|
short_description: Retrieve information about one or more OpenStack domains
|
2020-06-17 12:35:09 -05:00
|
|
|
author: OpenStack Ansible SIG
|
2020-05-12 10:20:09 -05:00
|
|
|
description:
|
|
|
|
- Retrieve information about a one or more OpenStack domains
|
|
|
|
options:
|
|
|
|
name:
|
|
|
|
description:
|
|
|
|
- Name or ID of the domain
|
|
|
|
type: str
|
|
|
|
filters:
|
|
|
|
description:
|
2022-04-26 16:08:33 -07:00
|
|
|
- A dictionary of meta data to use for filtering. Elements of
|
2020-05-12 10:20:09 -05:00
|
|
|
this dictionary may be additional dictionaries.
|
|
|
|
type: dict
|
|
|
|
requirements:
|
|
|
|
- "python >= 3.6"
|
|
|
|
- "openstacksdk"
|
|
|
|
|
|
|
|
extends_documentation_fragment:
|
|
|
|
- openstack.cloud.openstack
|
|
|
|
'''
|
|
|
|
|
|
|
|
EXAMPLES = '''
|
|
|
|
# Gather information about previously created domain
|
|
|
|
- openstack.cloud.identity_domain_info:
|
|
|
|
cloud: awesomecloud
|
|
|
|
register: result
|
|
|
|
- debug:
|
|
|
|
msg: "{{ result.openstack_domains }}"
|
|
|
|
|
|
|
|
# Gather information about a previously created domain by name
|
|
|
|
- openstack.cloud.identity_domain_info:
|
|
|
|
cloud: awesomecloud
|
|
|
|
name: demodomain
|
|
|
|
register: result
|
|
|
|
- debug:
|
|
|
|
msg: "{{ result.openstack_domains }}"
|
|
|
|
|
|
|
|
# Gather information about a previously created domain with filter
|
|
|
|
- openstack.cloud.identity_domain_info:
|
|
|
|
cloud: awesomecloud
|
|
|
|
name: demodomain
|
|
|
|
filters:
|
|
|
|
enabled: false
|
|
|
|
register: result
|
|
|
|
- debug:
|
|
|
|
msg: "{{ result.openstack_domains }}"
|
|
|
|
'''
|
|
|
|
|
|
|
|
|
|
|
|
RETURN = '''
|
|
|
|
openstack_domains:
|
|
|
|
description: has all the OpenStack information about domains
|
|
|
|
returned: always, but can be null
|
2022-04-26 16:08:33 -07:00
|
|
|
type: list
|
|
|
|
elements: dict
|
2020-05-12 10:20:09 -05:00
|
|
|
contains:
|
|
|
|
id:
|
|
|
|
description: Unique UUID.
|
|
|
|
returned: success
|
|
|
|
type: str
|
|
|
|
name:
|
|
|
|
description: Name given to the domain.
|
|
|
|
returned: success
|
|
|
|
type: str
|
|
|
|
description:
|
|
|
|
description: Description of the domain.
|
|
|
|
returned: success
|
|
|
|
type: str
|
2022-04-26 16:08:33 -07:00
|
|
|
is_enabled:
|
2020-05-12 10:20:09 -05:00
|
|
|
description: Flag to indicate if the domain is enabled.
|
|
|
|
returned: success
|
|
|
|
type: bool
|
2022-04-26 16:08:33 -07:00
|
|
|
links:
|
|
|
|
type: list
|
|
|
|
returned: success
|
|
|
|
description: The links related to the domain resource
|
2020-05-12 10:20:09 -05:00
|
|
|
'''
|
|
|
|
|
2021-05-20 16:24:19 +02:00
|
|
|
from ansible_collections.openstack.cloud.plugins.module_utils.openstack import OpenStackModule
|
2020-05-12 10:20:09 -05:00
|
|
|
|
|
|
|
|
2021-05-20 16:24:19 +02:00
|
|
|
class IdentityDomainInfoModule(OpenStackModule):
|
|
|
|
argument_spec = dict(
|
2022-07-27 12:39:44 +02:00
|
|
|
name=dict(),
|
|
|
|
filters=dict(type='dict'),
|
2020-05-12 10:20:09 -05:00
|
|
|
)
|
2022-04-26 16:08:33 -07:00
|
|
|
|
2021-05-20 16:24:19 +02:00
|
|
|
module_kwargs = dict(
|
2021-08-16 13:21:27 +03:00
|
|
|
supports_check_mode=True
|
2020-05-12 10:20:09 -05:00
|
|
|
)
|
2021-05-20 16:24:19 +02:00
|
|
|
|
|
|
|
def run(self):
|
|
|
|
name = self.params['name']
|
2022-04-26 16:08:33 -07:00
|
|
|
filters = self.params['filters'] or {}
|
2020-05-12 10:20:09 -05:00
|
|
|
|
2022-04-26 16:08:33 -07:00
|
|
|
args = {}
|
2020-05-12 10:20:09 -05:00
|
|
|
if name:
|
2022-04-26 16:08:33 -07:00
|
|
|
args['name_or_id'] = name
|
|
|
|
args['filters'] = filters
|
2021-05-20 16:24:19 +02:00
|
|
|
|
2022-04-26 16:08:33 -07:00
|
|
|
domains = [d.to_dict(computed=False) for d in self.conn.search_domains(**args)]
|
2021-05-20 16:24:19 +02:00
|
|
|
self.exit_json(changed=False, openstack_domains=domains)
|
2020-05-12 10:20:09 -05:00
|
|
|
|
|
|
|
|
2021-05-20 16:24:19 +02:00
|
|
|
def main():
|
|
|
|
module = IdentityDomainInfoModule()
|
|
|
|
module()
|
2020-05-12 10:20:09 -05:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|