Skip to content
Snippets Groups Projects
Verified Commit 6bf66680 authored by Karel van Klink's avatar Karel van Klink :smiley_cat:
Browse files

Remove v in front of Infoblox wapi version number

parent ebb5393a
Branches
Tags
1 merge request!65Feature/add infoblox service
......@@ -8,7 +8,7 @@
"IPAM": {
"INFOBLOX": {
"scheme": "https",
"wapi_version": "v2.12",
"wapi_version": "2.12",
"host": "10.0.0.1",
"username": "robot-user",
"password": "robot-user-password"
......
......@@ -28,7 +28,7 @@ def _setup_connection() -> tuple[connector.Connector, IPAMParams]:
"host": oss.INFOBLOX.host,
"username": oss.INFOBLOX.username,
"password": oss.INFOBLOX.password,
"wapi_version": oss.INFOBLOX.wapi_version[1:], # remove the 'v' in front of the version number
"wapi_version": oss.INFOBLOX.wapi_version,
"ssl_verify": True if oss.INFOBLOX.scheme == "https" else False,
}
return connector.Connector(options), oss
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment