11 lines
370 B
Python
Executable File
11 lines
370 B
Python
Executable File
# these values are used by ormcli to retrieve auth_token which is sent,
|
|
# along with region, with each cms and fms api request
|
|
import orm.base_config as config
|
|
|
|
tenant_name = config.token_auth_tenant
|
|
username = config.token_auth_user
|
|
password = config.token_auth_pass
|
|
auth_region = config.CONF.cli.base_region
|
|
orm_base_url = config.ranger_url
|
|
verify = config.ssl_verify
|