summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Van Casteren <larsvancasteren@gmail.com>2016-11-11 15:54:58 +0100
committerRyan Brown <sb@ryansb.com>2016-11-11 09:54:58 -0500
commit00e64def786e1b83774fb26d87826b01cae1a474 (patch)
treef10b1cfa3bf888d66549312461cd454612f1a306
parentd52d256196c66392d6c5aa08063b09b68ce23404 (diff)
downloadansible-modules-core-00e64def786e1b83774fb26d87826b01cae1a474.tar.gz
Docs update for `os_security_group` (#5531)
The example used equal characters and not colon characters.
-rw-r--r--cloud/openstack/os_security_group.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/cloud/openstack/os_security_group.py b/cloud/openstack/os_security_group.py
index f2a2bb6a..e5d0b899 100644
--- a/cloud/openstack/os_security_group.py
+++ b/cloud/openstack/os_security_group.py
@@ -53,17 +53,17 @@ options:
EXAMPLES = '''
# Create a security group
- os_security_group:
- cloud=mordred
- state=present
- name=foo
- description=security group for foo servers
+ cloud: mordred
+ state: present
+ name: foo
+ description: security group for foo servers
# Update the existing 'foo' security group description
- os_security_group:
- cloud=mordred
- state=present
- name=foo
- description=updated description for the foo security group
+ cloud: mordred
+ state: present
+ name: foo
+ description: updated description for the foo security group
'''