coolify_create_mongodb_database
Create a MongoDB database in Coolify by specifying name, server, project, environment, and authentication credentials for database setup.
Instructions
Create a MongoDB database
Input Schema
Name | Required | Description | Default |
---|---|---|---|
environment_name | Yes | Environment name | |
mongodb_database | No | MongoDB database name | |
mongodb_password | No | MongoDB password | |
mongodb_root_password | No | MongoDB root password | |
mongodb_root_username | No | MongoDB root username | |
mongodb_username | No | MongoDB username | |
name | Yes | Database name | |
project_uuid | Yes | Project UUID | |
server_uuid | Yes | Server UUID |
Input Schema (JSON Schema)
{
"properties": {
"environment_name": {
"description": "Environment name",
"type": "string"
},
"mongodb_database": {
"description": "MongoDB database name",
"type": "string"
},
"mongodb_password": {
"description": "MongoDB password",
"type": "string"
},
"mongodb_root_password": {
"description": "MongoDB root password",
"type": "string"
},
"mongodb_root_username": {
"description": "MongoDB root username",
"type": "string"
},
"mongodb_username": {
"description": "MongoDB username",
"type": "string"
},
"name": {
"description": "Database name",
"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"
}