coolify_create_redis_database
Create a Redis database in Coolify by specifying name, server, project, environment, and password for application data storage.
Instructions
Create a Redis database
Input Schema
Name | Required | Description | Default |
---|---|---|---|
environment_name | Yes | Environment name | |
name | Yes | Database name | |
project_uuid | Yes | Project UUID | |
redis_password | No | Redis password | |
server_uuid | Yes | Server UUID |
Input Schema (JSON Schema)
{
"properties": {
"environment_name": {
"description": "Environment name",
"type": "string"
},
"name": {
"description": "Database name",
"type": "string"
},
"project_uuid": {
"description": "Project UUID",
"type": "string"
},
"redis_password": {
"description": "Redis password",
"type": "string"
},
"server_uuid": {
"description": "Server UUID",
"type": "string"
}
},
"required": [
"name",
"server_uuid",
"project_uuid",
"environment_name"
],
"type": "object"
}