65a53e5438
Add a backend for integrating with Infoblox grids. Infoblox will serve as a secondary for Designate-controlled zones. Implements: blueprint infoblox-backend Change-Id: Ic6cd00850442c7b31ca5034f1306d37e69991014
41 lines
1.2 KiB
Python
41 lines
1.2 KiB
Python
# Copyright 2015 Infoblox Inc.
|
|
# All Rights Reserved.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
import logging
|
|
|
|
from oslo_config import cfg
|
|
|
|
LOG = logging.getLogger(__name__)
|
|
|
|
|
|
cfg.CONF.register_group(cfg.OptGroup(
|
|
name='backend:infoblox', title="Configuration for Infoblox Backend"
|
|
))
|
|
|
|
OPTS = [
|
|
cfg.StrOpt('wapi_url'),
|
|
cfg.StrOpt('username'),
|
|
cfg.StrOpt('password'),
|
|
cfg.BoolOpt('sslverify', default=False),
|
|
cfg.BoolOpt('multi_tenant', default=False),
|
|
cfg.IntOpt('http_pool_connections', default=100),
|
|
cfg.IntOpt('http_pool_maxsize', default=100),
|
|
cfg.StrOpt('dns_view', default='default'),
|
|
cfg.StrOpt('network_view', default='default'),
|
|
cfg.StrOpt('ns_group')
|
|
]
|
|
|
|
cfg.CONF.register_opts(OPTS, group='backend:infoblox')
|