create_instance
Create a new cloud instance on Civo by specifying hostname, size, and template. Configure region and quantity to provision virtual servers for your applications.
Instructions
Create a new cloud instance on Civo
Input Schema
Name | Required | Description | Default |
---|---|---|---|
count | No | Number of instances to create | |
hostname | Yes | Fully qualified domain name | |
region | No | Region identifier | LON1 |
size | Yes | Instance size (e.g. g2.small) | |
template_id | Yes | Disk image ID |
Input Schema (JSON Schema)
{
"properties": {
"count": {
"default": 1,
"description": "Number of instances to create",
"type": "number"
},
"hostname": {
"description": "Fully qualified domain name",
"type": "string"
},
"region": {
"default": "LON1",
"description": "Region identifier",
"type": "string"
},
"size": {
"description": "Instance size (e.g. g2.small)",
"type": "string"
},
"template_id": {
"description": "Disk image ID",
"type": "string"
}
},
"required": [
"hostname",
"size",
"template_id"
],
"type": "object"
}