![raigax9](/assets/img/avatar_default.png)
The UUID_URL was missing a 'v1' that was causing an issue for running rds. Updated ormcli config file where the base_url is changed. Change-Id: Ifed2d94332eddd4ca200008ad397bba4c512adb0
11 lines
405 B
Python
Executable File
11 lines
405 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.cli['base_region']
|
|
orm_base_url = '{}://{}'.format(config.orm_protocal, config.orm_host)
|
|
verify = config.ssl_verify
|