summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke <luke.tislow@linux.com>2015-08-28 08:46:45 -0400
committerLuke <luke.tislow@linux.com>2015-08-28 08:46:45 -0400
commit40f2ff9fbf71b7a4330b5ddb56a207dec05d5dbf (patch)
tree9e25338c253acb3e1da8ff0011afd6d021e5594d
parent66288d48a2ec95735e86d457ef4ee5f1eb0ff0fd (diff)
downloadansible-modules-core-40f2ff9fbf71b7a4330b5ddb56a207dec05d5dbf.tar.gz
removed hyphens in module name in examples
-rw-r--r--cloud/openstack/os_client_config.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/cloud/openstack/os_client_config.py b/cloud/openstack/os_client_config.py
index 7128b06f..67c58dfd 100644
--- a/cloud/openstack/os_client_config.py
+++ b/cloud/openstack/os_client_config.py
@@ -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
'''