mirror of
https://github.com/trailofbits/algo
synced 2024-11-04 06:00:21 +00:00
21 lines
526 B
Markdown
21 lines
526 B
Markdown
|
### Configuration file
|
||
|
|
||
|
You need to create a configuration file in INI format with your api key in `$HOME/.cloudstack.ini`
|
||
|
|
||
|
```
|
||
|
[cloudstack]
|
||
|
endpoint = <endpoint>
|
||
|
key = <your api key>
|
||
|
secret = <your secret>
|
||
|
timeout = 30
|
||
|
```
|
||
|
|
||
|
Example for Exoscale (European cloud provider exposing CloudStack API), visit https://portal.exoscale.com/u/<your@account>/account/profile/api to gather the required information:
|
||
|
```
|
||
|
[exoscale]
|
||
|
endpoint = https://api.exoscale.com/compute
|
||
|
key = <your api key>
|
||
|
secret = <your secret>
|
||
|
timeout = 30
|
||
|
```
|