Secrets
Pipeline secrets
Secrets from a pipeline.
GEThttps://cloud-api.calyptia.com/v1/aggregator_pipelines/{pipelineID}/secrets
Authorization
Path parameters
pipelineID*string (uuid)
Query parameters
Response
OK
Body
id*string (uuid)
key*string
Example: "mysecret"
value*string (byte)
createdAt*string (date-time)
updatedAt*string (date-time)
Request
Response
Create pipeline secret
Create secret within a pipeline.
The given name is unique within the pipeline.
These secrets can be referenced by their name within a fluentbit configuration file like so {{secrets.thename}}
.
Use them to hide sensible values from your config file.
POSThttps://cloud-api.calyptia.com/v1/aggregator_pipelines/{pipelineID}/secrets
Authorization
Path parameters
pipelineID*string (uuid)
Body
key*string
Example: "newsecret"
value*string (byte)
Response
Created
Body
id*string (uuid)
createdAt*string (date-time)
Request
Response