coolify_create_postgresql_database
Create a PostgreSQL database in Coolify by specifying name, server, project, and environment parameters for database provisioning.
Instructions
Create a PostgreSQL database
Input Schema
Name | Required | Description | Default |
---|---|---|---|
environment_name | Yes | Environment name | |
name | Yes | Database name | |
postgresql_db | No | PostgreSQL database name | |
postgresql_password | No | PostgreSQL password | |
postgresql_user | No | PostgreSQL user | |
project_uuid | Yes | Project UUID | |
server_uuid | Yes | Server UUID |
Input Schema (JSON Schema)
{
"properties": {
"environment_name": {
"description": "Environment name",
"type": "string"
},
"name": {
"description": "Database name",
"type": "string"
},
"postgresql_db": {
"description": "PostgreSQL database name",
"type": "string"
},
"postgresql_password": {
"description": "PostgreSQL password",
"type": "string"
},
"postgresql_user": {
"description": "PostgreSQL user",
"type": "string"
},
"project_uuid": {
"description": "Project UUID",
"type": "string"
},
"server_uuid": {
"description": "Server UUID",
"type": "string"
}
},
"required": [
"name",
"server_uuid",
"project_uuid",
"environment_name"
],
"type": "object"
}