coolify_create_security_key
Generate a new SSH security key for secure access to Coolify infrastructure resources, enabling encrypted authentication and secure server connections.
Instructions
Create a new security key
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | Key description | |
key | Yes | SSH private key content | |
name | Yes | Key name |
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"
}
},
"required": [
"name",
"key"
],
"type": "object"
}