coolify_update_server
Update server details in Coolify infrastructure management including name, description, IP address, SSH port, and user credentials using the server UUID.
Instructions
Update server
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | Server description | |
ip | No | Server IP address | |
name | No | Server name | |
port | No | SSH port | |
user | No | SSH user | |
uuid | Yes | Server UUID |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "Server description",
"type": "string"
},
"ip": {
"description": "Server IP address",
"type": "string"
},
"name": {
"description": "Server name",
"type": "string"
},
"port": {
"description": "SSH port",
"type": "number"
},
"user": {
"description": "SSH user",
"type": "string"
},
"uuid": {
"description": "Server UUID",
"type": "string"
}
},
"required": [
"uuid"
],
"type": "object"
}