VPS_createPublicKeyV1
Generate and register a new SSH public key for VPS authentication securely. This tool allows you to add a named public key to your account for enhanced server access control.
Instructions
Add a new public key to your account.
Use this endpoint to register SSH keys for VPS authentication.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
key | Yes | key parameter | |
name | Yes | name parameter |
Input Schema (JSON Schema)
{
"properties": {
"key": {
"description": "key parameter",
"type": "string"
},
"name": {
"description": "name parameter",
"type": "string"
}
},
"required": [
"name",
"key"
],
"type": "object"
}