Secrets
Core Instance Secrets
Secrets from a core instance with backward pagination.
GEThttps://cloud-api.calyptia.com/v1/core_instances/{coreInstanceID}/secrets
Authorization
Path parameters
coreInstanceID*string (uuid)
Query parameters
Response
OK
Body
items*array of CoreInstanceSecret (object)
endCursor*nullable string
count*number (int32)
Request
Response
Create Core Instance Secret
Create a new secret within a core instance.
The secret will be created with the given name and content.
If encypted
is set to true
, the secret will be encrypted using the
core instance's encryption key.
The name must be unique among all secrets within the core instance.
POSThttps://cloud-api.calyptia.com/v1/core_instances/{coreInstanceID}/secrets
Authorization
Path parameters
coreInstanceID*string (uuid)
Body
key*string
Example: "mysecret"
value*string (byte)
The value of the secret in base 64 format.
Response
Created
Body
id*string (uuid)
createdAt*string (date-time)
Request
Response