Files
tobiko/tobiko/openstack/keystone/config.py
T
pkomarovandFederico Ressi 7aaab7fb57 Improve KeyStone credentials parameter handling.
- Put order in keystone credentials parameters
- Add keystone auth parameters:
  * domain_name
  * trust_id
- Add support for environment variables:
  * OS_USER_ID
  * OS_PROJECT_ID
  * OS_TENANT_ID
  * OS_DOMAIN_NAME
  * OS_DOMAIN_ID
  * OS_USER_DOMAIN_ID
  * OS_PROJECT_DOMAIN_ID
  * OS_TRUST_ID

Co-Authored-By: Federico Ressi <fressi@redhat.com>
Change-Id: I66085db690c8f72408b79b3abea9dce7c60b4ea2
2019-05-08 17:32:58 +02:00

50 lines
1.9 KiB
Python

# Copyright 2019 Red Hat
#
# 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.
from __future__ import absolute_import
from oslo_config import cfg
def register_tobiko_options(conf):
conf.register_opts(
group=cfg.OptGroup('keystone'),
opts=[cfg.IntOpt('api_version',
default=None,
help="Identity API version"),
cfg.StrOpt('auth_url',
default=None,
help="Identity service URL"),
cfg.StrOpt('username',
default=None,
help="Username"),
cfg.StrOpt('project_name',
default=None,
help="Project name"),
cfg.StrOpt('password',
default=None,
help="Password"),
cfg.StrOpt('domain_name',
default=None,
help="Domain name"),
cfg.StrOpt('user_domain_name',
default=None,
help="User domain name"),
cfg.StrOpt('project_domain_name',
default=None,
help="Project domain name"),
cfg.StrOpt('trust_id',
default=None,
help="Trust ID for trust scoping.")])