From 927ef22ad6790f1f634fdaeaed580123df6cb707 Mon Sep 17 00:00:00 2001 From: s-hertel Date: Wed, 7 Feb 2018 20:06:36 -0500 Subject: [PATCH] Fix docs and imports for os_project_access --- lib/ansible/modules/cloud/openstack/os_project_access.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lib/ansible/modules/cloud/openstack/os_project_access.py b/lib/ansible/modules/cloud/openstack/os_project_access.py index a0e125c8a8..de0c8fbde2 100644 --- a/lib/ansible/modules/cloud/openstack/os_project_access.py +++ b/lib/ansible/modules/cloud/openstack/os_project_access.py @@ -13,6 +13,9 @@ # You should have received a copy of the GNU General Public License # along with this software. If not, see . +from __future__ import (absolute_import, division, print_function) +__metaclass__ = type + ANSIBLE_METADATA = {'metadata_version': '1.1', 'status': ['preview'], 'supported_by': 'community'} @@ -44,6 +47,9 @@ options: resource_name: description: - The resource name (eg. tiny). + availability_zone: + description: + - The availability zone of the resource. requirements: - "shade"