From 5a43bdb87382b534f3fbaa9207626c0ced04f2ff Mon Sep 17 00:00:00 2001 From: Jakob Meng Date: Fri, 22 Apr 2022 12:08:22 +0200 Subject: [PATCH] Follow up to bump of minimum required OpenStack SDK release to SDK 0.36.0 (Train) Commit 879270aa47 [1] bumped the required minimum SDK release but missed to update two locations in code and docs. Ref.: [1] https://opendev.org/openstack/ansible-collections-openstack/commit/879270aa47f4b4e1977637af678ed03b4c6a2c2e Change-Id: I725a26b07484619f6f2c460e974821f81d60b153 --- plugins/doc_fragments/openstack.py | 2 +- plugins/module_utils/openstack.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/doc_fragments/openstack.py b/plugins/doc_fragments/openstack.py index 17c83626..57d68302 100644 --- a/plugins/doc_fragments/openstack.py +++ b/plugins/doc_fragments/openstack.py @@ -91,7 +91,7 @@ options: type: str requirements: - python >= 3.6 - - openstacksdk >= 0.12.0 + - openstacksdk >= 0.36.0 notes: - The standard OpenStack environment variables, such as C(OS_USERNAME) may be used instead of providing explicit values. diff --git a/plugins/module_utils/openstack.py b/plugins/module_utils/openstack.py index 344847e3..86b968e3 100644 --- a/plugins/module_utils/openstack.py +++ b/plugins/module_utils/openstack.py @@ -67,7 +67,7 @@ OVERRIDES = {'os_client_config': 'config', CUSTOM_VAR_PARAMS = ['min_ver', 'max_ver'] -MINIMUM_SDK_VERSION = '0.12.0' +MINIMUM_SDK_VERSION = '0.36.0' def openstack_argument_spec():