Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
GÉANT Service Orchestrator
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
GÉANT Orchestration and Automation Team
GAP
GÉANT Service Orchestrator
Commits
6bf66680
Verified
Commit
6bf66680
authored
1 year ago
by
Karel van Klink
Browse files
Options
Downloads
Patches
Plain Diff
Remove v in front of Infoblox wapi version number
parent
ebb5393a
Branches
Branches containing commit
Tags
Tags containing commit
1 merge request
!65
Feature/add infoblox service
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
gso/oss-params-example.json
+1
-1
1 addition, 1 deletion
gso/oss-params-example.json
gso/services/infoblox.py
+1
-1
1 addition, 1 deletion
gso/services/infoblox.py
with
2 additions
and
2 deletions
gso/oss-params-example.json
+
1
−
1
View file @
6bf66680
...
...
@@ -8,7 +8,7 @@
"IPAM"
:
{
"INFOBLOX"
:
{
"scheme"
:
"https"
,
"wapi_version"
:
"
v
2.12"
,
"wapi_version"
:
"2.12"
,
"host"
:
"10.0.0.1"
,
"username"
:
"robot-user"
,
"password"
:
"robot-user-password"
...
...
This diff is collapsed.
Click to expand it.
gso/services/infoblox.py
+
1
−
1
View file @
6bf66680
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment