From dff5fa3ec25190e588d5f52c2b0f2e6f7e8d1389 Mon Sep 17 00:00:00 2001 From: "Ryan S. Brown" Date: Wed, 7 Feb 2018 19:08:34 -0500 Subject: [PATCH] Fix os_project_access metadata and argspec import --- lib/ansible/modules/cloud/openstack/os_project_access.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/ansible/modules/cloud/openstack/os_project_access.py b/lib/ansible/modules/cloud/openstack/os_project_access.py index fec7e7a0dca..2d747060b61 100644 --- a/lib/ansible/modules/cloud/openstack/os_project_access.py +++ b/lib/ansible/modules/cloud/openstack/os_project_access.py @@ -13,7 +13,7 @@ # You should have received a copy of the GNU General Public License # along with this software. If not, see . -ANSIBLE_METADATA = {'metadata_version': '1.0', +ANSIBLE_METADATA = {'metadata_version': '1.1', 'status': ['preview'], 'supported_by': 'community'} @@ -95,6 +95,7 @@ except ImportError: from ansible.module_utils.basic import AnsibleModule +from ansible.module_utils.openstack import openstack_full_argument_spec def _get_allowed_projects(cloud, flavor_id):