Docs update for os_security_group (#5531)

The example used equal characters and not colon characters.
This commit is contained in:
Lars Van Casteren 2016-11-11 15:54:58 +01:00 committed by Matt Clay
parent 2ef59561ba
commit 0a435058a5

View file

@ -52,17 +52,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
'''