15 lines
396 B
Python
15 lines
396 B
Python
"""Constants for the cloud component."""
|
|
DOMAIN = 'cloud'
|
|
REQUEST_TIMEOUT = 10
|
|
AUTH_FILE = '.cloud'
|
|
|
|
SERVERS = {
|
|
'development': {
|
|
'client_id': '3k755iqfcgv8t12o4pl662mnos',
|
|
'identity_pool_id': 'us-west-2_vDOfweDJo',
|
|
'region': 'us-west-2',
|
|
'access_key_id': 'AKIAJGRK7MILPRJTT2ZQ',
|
|
'secret_access_key': 'lscdYBApxrLWL0HKuVqVXWv3ou8ZVXgG7rZBu/Sz'
|
|
}
|
|
}
|