Update os_group_info.py (#65115)

pull/66044/head
choeffer 5 years ago committed by Sandra McCann
parent 6d65280dfc
commit d85816396e

@ -47,39 +47,55 @@ options:
EXAMPLES = ''' EXAMPLES = '''
# Gather info about previously created groups # Gather info about previously created groups
- os_group_info: - name: gather info
cloud: awesomecloud hosts: localhost
register: openstack_groups tasks:
- debug: - name: Gather info about previously created groups
var: openstack_groups os_group_info:
cloud: awesomecloud
register: openstack_groups
- debug:
var: openstack_groups
# Gather info about a previously created group by name # Gather info about a previously created group by name
- os_group_info: - name: gather info
cloud: awesomecloud hosts: localhost
name: demogroup tasks:
register: openstack_groups - name: Gather info about a previously created group by name
- debug: os_group_info:
var: openstack_groups cloud: awesomecloud
name: demogroup
register: openstack_groups
- debug:
var: openstack_groups
# Gather info about a previously created group in a specific domain # Gather info about a previously created group in a specific domain
- os_group_info: - name: gather info
cloud: awesomecloud hosts: localhost
name: demogroup tasks:
domain: admindomain - name: Gather info about a previously created group in a specific domain
register: openstack_groups os_group_info:
- debug: cloud: awesomecloud
var: openstack_groups name: demogroup
domain: admindomain
register: openstack_groups
- debug:
var: openstack_groups
# Gather info about a previously created group in a specific domain with filter # Gather info about a previously created group in a specific domain with filter
- os_group_info: - name: gather info
cloud: awesomecloud hosts: localhost
name: demogroup tasks:
domain: admindomain - name: Gather info about a previously created group in a specific domain with filter
filters: os_group_info:
enabled: False cloud: awesomecloud
register: openstack_groups name: demogroup
- debug: domain: admindomain
var: openstack_groups filters:
enabled: False
register: openstack_groups
- debug:
var: openstack_groups
''' '''

Loading…
Cancel
Save