coolify_update_security_key
Update an existing security key in Coolify by modifying its name, description, or SSH private key content using the key's UUID identifier.
Instructions
Update security key
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| description | No | Key description | |
| key | No | SSH private key content | |
| name | No | Key name | |
| uuid | Yes | Security key UUID |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "Key description",
"type": "string"
},
"key": {
"description": "SSH private key content",
"type": "string"
},
"name": {
"description": "Key name",
"type": "string"
},
"uuid": {
"description": "Security key UUID",
"type": "string"
}
},
"required": [
"uuid"
],
"type": "object"
}