create_ssh_key_pair
Generate or upload an SSH key pair on the CloudStack MCP Server to securely access and manage virtual machines and cloud resources.
Instructions
Create a new SSH key pair
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | Key pair name | |
publickey | No | Public key string (optional - generates if not provided) |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"name": {
"description": "Key pair name",
"type": "string"
},
"publickey": {
"description": "Public key string (optional - generates if not provided)",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}