From 028b5965b66656ffe7810cea3bcc0e505339ebc2 Mon Sep 17 00:00:00 2001 From: Jesse Pretorius Date: Sun, 20 May 2018 22:06:19 +0100 Subject: [PATCH] os_project_access: correct example tasks The example task does not work. Fix it so that it does. --- lib/ansible/modules/cloud/openstack/os_project_access.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/ansible/modules/cloud/openstack/os_project_access.py b/lib/ansible/modules/cloud/openstack/os_project_access.py index de0c8fbde2a..f3766a77379 100644 --- a/lib/ansible/modules/cloud/openstack/os_project_access.py +++ b/lib/ansible/modules/cloud/openstack/os_project_access.py @@ -57,7 +57,7 @@ requirements: EXAMPLES = ''' - name: "Enable access to tiny flavor to your tenant." - os_project_Access: + os_project_access: cloud: mycloud state: present target_project_id: f0f1f2f3f4f5f67f8f9e0e1 @@ -66,7 +66,7 @@ EXAMPLES = ''' - name: "Disable access to the given flavor to project" - os_project_Access: + os_project_access: cloud: mycloud state: absent target_project_id: f0f1f2f3f4f5f67f8f9e0e1