
Update Ranger logic to pass the X-Auth-Token in the headers when creating or updating a ranger resource (flavors, customers, images, and groups). Update rds logic to generate a token before making the delete region request. These changes are necessary as user authentication logic has been implemented for RMS region creation and updates. Change-Id: I6419dbbe440d915268d6b16ae166ab32731d9af2
15 lines
570 B
Python
Executable File
15 lines
570 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.CONF.keystone_authtoken.project_name
|
|
username = config.CONF.keystone_authtoken.username
|
|
password = config.CONF.keystone_authtoken.password
|
|
auth_region = config.CONF.cli.base_region
|
|
keystone_auth_url = ''
|
|
rms_base_url = config.rms['base_url']
|
|
cms_base_url = config.cms['base_url']
|
|
fms_base_url = config.fms['base_url']
|
|
ims_base_url = config.ims['base_url']
|
|
verify = config.CONF.ssl_verify
|