Secrets /
Update secret
Update a secret
Path parameters
projectId
string requiredID of the projectsecretId
string requiredID of the secret
Request body
- {object}
description
stringA description of the secret.max length200pattern^[a-zA-Z0-9.,?\s\\/'"()[\];`%^&*\-_:!]+$priority
integerThe priority with which different secrets will be merged.min0max100restrictions
{object}Restriction settings of the secretrestricted
booleanWhether the secret is restricted to specific resources. If this is `true`, only resources listed in `nfObjects` or with a tag listed in `tags` will have access to these secrets. Otherwise, all resources in the project will be able to access it.nfObjects
[array]List of Northflank services & jobs the secret is restricted to- {object}
id
string requiredID of the entity the secret is restricted to.pattern^[A-Za-z0-9-]+$type
string requiredType of the entity the secret is restricted to.one ofservice, jobtagMatchCondition
stringIf all or any of the tags must be present on the target for it to match the condition.one ofand, oraddonDependencies
[array]An array of addons to link to this secret group. If provided, this will overwrite any existing linked addons.- {object}An object containing data about the addon to link.
addonId
string requiredThe id of the addon to link.pattern^[A-Za-z0-9-]+$keys
[array] requiredAn array of objects containing details about the keys to link to this secret group.- {object}Details about the key to link to this secret group.
keyName
string requiredThe name of the key to link.pattern[a-zA-Z]+aliases
[array]An array of aliases for the key.- stringThe name of the alias. Keys may only contain letters, numbers, hyphens, forward slashes and dots.pattern^[a-zA-Z0-9_./-]*$
type
stringThe permission type of the secret group.one ofsecret, configsecretType
stringThe type of the created secret groupone ofenvironment-arguments, environment, argumentssecrets
{object}variables
{object}Secret variables as JSON object, encrypted at rest. Keys may only contain letters, numbers, hyphens, forward slashes and dots.files
{object}Secret files as JSON object, encrypted at rest. File path must be absolute
Response body
- {object}Response object.
data
{object} requiredResult data.
API
CLI
JS Client
POST /v1/projects/{projectId}/secrets/{secretId}
Example request
Request body
curl
curl --header "Content-Type: application/json" \
--header "Authorization: Bearer NORTHFLANK_API_TOKEN" \
--request POST \
--data '{"description":"A description","priority":10,"restrictions":{"restricted":true,"nfObjects":[{"id":"example-service","type":"service"}],"tags":["my-tag"],"tagMatchCondition":"or"},"addonDependencies":[{"addonId":"example-addon","keys":[{"keyName":"USERNAME","aliases":["MONGO_USERNAME"]}]}],"type":"secret","secretType":"environment","secrets":{"variables":{"NODE_ENV":"production","MONGO_DB":"some_connection_string"},"files":{"/dir/fileName":{"data":"VGhpcyBpcyBhbiBleGFtcGxlIHdpdGggYSB0ZW1wbGF0ZWQgJHtOT0RFX0VOVn0gdmFyaWFibGU=","encoding":"utf-8"}}}}' \
https://api.northflank.com/v1/projects/{projectId}/secrets/{secretId}
Example response
200 OK
The operation was performed successfully.
JSON
{
"data": {}
}