Start Rotation Job
- Print
- PDF
Start Rotation Job
- Print
- PDF
Article summary
Did you find this summary helpful?
Thank you for your feedback
Summary
Start a secret rotation job.
Secret Manager is notified that the rotation job has started, and the secret's rotation status changes.
The current secret chain value is returned.
POST https://secretmanager.apigw.ntruss.com/action/v1/secrets/{secretId}/jobs/{jobToken}/start
Request
Request parameters
Parameter name | Type | Description |
---|---|---|
secretId | String | Secret ID (automatically injected via trigger, can be obtained as an environment variable: Replace secret action example code) |
jobToken | String | Job action token (automatically injected via trigger, can be obtained as an environment variable: Replace secret action example code) |
Request body
None
Response
Response body
{
"code": "SUCCESS",
"data": {
"decryptedSecretChain": {
"previous": "string",
"active": "string",
"pending": "string"
},
"rotationTargets": [
"string"
]
}
}
Parameter name | Type | Description |
---|---|---|
decryptedSecretChain.previous | String | Previous status secret value |
decryptedSecretChain.active | String | Active status secret value |
decryptedSecretChain.pending | String | Pending status secret value |
rotationTargets | String[] | List of secret values to rotate |
Was this article helpful?