raigax9 a8758bd87f Added missing 'v1' in rds config file and updated ormcli config
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
2017-10-09 11:20:06 -04:00

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