Skip to content

Commit

Permalink
Upgraded base wapi version support to plugin from v2.9 to v2.12
Browse files Browse the repository at this point in the history
  • Loading branch information
JkhatriInfobox committed Dec 14, 2023
1 parent eca5194 commit 345874a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions plugins/doc_fragments/nios.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,8 @@ class ModuleDocFragment(object):
- Specifies the version of WAPI to use
- Value can also be specified using C(INFOBLOX_WAPI_VERSION) environment
variable.
- Until ansible 2.8 the default WAPI was 1.4
type: str
default: '2.9'
default: '2.12'
max_results:
description:
- Specifies the maximum number of objects to be returned,
Expand Down
2 changes: 1 addition & 1 deletion plugins/module_utils/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@
'http_pool_connections': dict(type='int', default=10),
'http_pool_maxsize': dict(type='int', default=10),
'max_retries': dict(type='int', default=3, fallback=(env_fallback, ['INFOBLOX_MAX_RETRIES'])),
'wapi_version': dict(default='2.9', fallback=(env_fallback, ['INFOBLOX_WAPI_VERSION'])),
'wapi_version': dict(default='2.12', fallback=(env_fallback, ['INFOBLOX_WAPI_VERSION'])),
'max_results': dict(type='int', default=1000, fallback=(env_fallback, ['INFOBLOX_MAX_RESULTS']))
}

Expand Down

0 comments on commit 345874a

Please sign in to comment.