diff --git a/lib/ansible/modules/cloud/openstack/os_security_group.py b/lib/ansible/modules/cloud/openstack/os_security_group.py index dec8a17e992..03b89a4dcef 100644 --- a/lib/ansible/modules/cloud/openstack/os_security_group.py +++ b/lib/ansible/modules/cloud/openstack/os_security_group.py @@ -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 '''