From a4aa29edd96e406385697525c883dbb399b18517 Mon Sep 17 00:00:00 2001 From: Luke Date: Fri, 28 Aug 2015 08:34:05 -0400 Subject: [PATCH] updated examples When testing with existing example, I received errors about auth block not being ingested. After adding the auth block, name and state with "=" caused syntax errors. --- cloud/openstack/os_network.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/cloud/openstack/os_network.py b/cloud/openstack/os_network.py index 75c431493f6..f911ce71af1 100644 --- a/cloud/openstack/os_network.py +++ b/cloud/openstack/os_network.py @@ -57,8 +57,13 @@ requirements: ["shade"] EXAMPLES = ''' - os_network: - name=t1network - state=present + name: t1network + state: present + auth: + auth_url: https://your_api_url.com:9000/v2.0 + username: user + password: password + project_name: someproject '''