Skip to content

Latest commit

 

History

History
34 lines (27 loc) · 577 Bytes

cloud_account.md

File metadata and controls

34 lines (27 loc) · 577 Bytes

Cloud Account

A Cloud Account is a simple object that holds API access credentials for any supported Provider.

It is the parent object of Kubes. Credentials are validated on create by an API call to the respective Provider.

Examples

AWS

{
  "name": "my-aws-account",
  "provider": "aws",
  "credentials": {
    "access_key": "<your_access_key>",
    "secret_key": "<your_secret_key>"
  }
}

DigitalOcean

{
  "name": "my-do-account",
  "provider": "digitalocean",
  "credentials": {
    "token": "<your_api_token>"
  }
}