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 = ''' EXAMPLES = '''
# Create a security group # Create a security group
- os_security_group: - os_security_group:
cloud=mordred cloud: mordred
state=present state: present
name=foo name: foo
description=security group for foo servers description: security group for foo servers
# Update the existing 'foo' security group description # Update the existing 'foo' security group description
- os_security_group: - os_security_group:
cloud=mordred cloud: mordred
state=present state: present
name=foo name: foo
description=updated description for the foo security group description: updated description for the foo security group
''' '''