19 lines
605 B
Python
19 lines
605 B
Python
# Create API credentials at https://eu.api.ovh.com/createToken/
|
|
# See https://docs.ovh.com/fr/api/api-premiers-pas/#prerequis
|
|
ovh_endpoint = 'ovh-eu'
|
|
ovh_application_key = 'xxxxxxx'
|
|
ovh_application_secret = 'xxxxxxx'
|
|
ovh_consumer_key = 'xxxxxxx'
|
|
|
|
# Fill with ID of your public cloud project, found in the manager URI
|
|
ovh_public_cloud_project = 'xxxxxxx'
|
|
|
|
ovh_public_cloud_region = 'SBG5'
|
|
|
|
# Fill with the name of your SSH key
|
|
ovh_public_cloud_sshkey_name = 'xxx'
|
|
|
|
# These are tailored for Android builds at reasonable speed / cost
|
|
ovh_public_cloud_image = 'Ubuntu 20.04'
|
|
ovh_public_cloud_flavor = 'b2-30'
|