1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

removed hyphens in module name in examples

This commit is contained in:
Luke 2015-08-28 08:46:45 -04:00 committed by Matt Clay
parent 488749500e
commit aa9b8b8552

View file

@ -40,12 +40,12 @@ author: "Monty Taylor (@emonty)"
EXAMPLES = '''
# 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() }}"
# Get the information back just about the mordred cloud
- os-client-config:
- os_client_config:
clouds:
- mordred
'''