coolify_create_application_env
Add environment variables to Coolify applications by specifying key-value pairs, with optional secret protection for sensitive data.
Instructions
Create application environment variable
Input Schema
Name | Required | Description | Default |
---|---|---|---|
is_secret | No | Whether the variable is secret | |
key | Yes | Environment variable key | |
uuid | Yes | Application UUID | |
value | Yes | Environment variable value |
Input Schema (JSON Schema)
{
"properties": {
"is_secret": {
"default": false,
"description": "Whether the variable is secret",
"type": "boolean"
},
"key": {
"description": "Environment variable key",
"type": "string"
},
"uuid": {
"description": "Application UUID",
"type": "string"
},
"value": {
"description": "Environment variable value",
"type": "string"
}
},
"required": [
"uuid",
"key",
"value"
],
"type": "object"
}