287d68523c
Update Ranger to merge multpiple databases into one. Also fix the delete_region and delete_user issues that were discovered . Change-Id: I0642ee771b18caae81bdb6882caa21ef376c78b6
71 lines
1.8 KiB
Python
Executable File
71 lines
1.8 KiB
Python
Executable File
import orm.base_config as config
|
|
from orm.common.orm_common.hooks.api_error_hook import APIErrorHook
|
|
from orm.common.orm_common.hooks.security_headers_hook import SecurityHeadersHook
|
|
from orm.common.orm_common.hooks.transaction_id_hook import TransactionIdHook
|
|
global TransactionIdHook
|
|
global APIErrorHook
|
|
global SecurityHeadersHook
|
|
|
|
# Server Specific Configurations
|
|
server = {
|
|
'port': config.cms['port'],
|
|
'host': config.orm_host,
|
|
'name': 'cms',
|
|
'host_ip': config.orm_host
|
|
}
|
|
|
|
# Pecan Application Configurations
|
|
|
|
app = {
|
|
'root': 'orm.services.customer_manager.cms_rest.controllers.root.RootController',
|
|
'modules': ['orm.services.customer_manager.cms_rest'],
|
|
'debug': True,
|
|
'hooks': lambda: [TransactionIdHook(), APIErrorHook(), SecurityHeadersHook()]
|
|
}
|
|
|
|
app_module = app['modules'][0]
|
|
logging = config.get_log_config(config.cms['log'], server['name'], app_module)
|
|
|
|
quotas_default_values = {
|
|
'compute': {
|
|
'vcpus': '20',
|
|
'metadata_items': '128',
|
|
'injected_file_content_bytes': '10240'
|
|
},
|
|
'network': {
|
|
'security_groups': '10',
|
|
'security_group_rules': '20'
|
|
}
|
|
}
|
|
|
|
# DB configurations
|
|
database = {
|
|
'connection_string': config.db_connect
|
|
}
|
|
|
|
api = {
|
|
'uuid_server': {
|
|
'base': config.uuid['base_url'],
|
|
'uuids': 'v1/uuids'
|
|
},
|
|
'rds_server': {
|
|
'base': config.rds['base_url'],
|
|
'resources': 'v1/rds/resources',
|
|
'status': 'v1/rds/status/resource/'
|
|
},
|
|
'rms_server': {
|
|
'base': config.rms['base_url'],
|
|
'regions': 'v2/orm/regions',
|
|
'groups': 'v2/orm/groups',
|
|
'cache_seconds': 30
|
|
},
|
|
'audit_server': {
|
|
'base': config.audit_server['base_url'],
|
|
'trans': 'v1/audit/transaction'
|
|
}
|
|
}
|
|
|
|
verify = config.ssl_verify
|
|
|
|
authentication = config.server_request_auth(server['name'])
|