create_application_env
Adds an environment variable to an application by specifying key, value, and optional build/preview flags.
Instructions
Create a new environment variable for an application. This adds a new key-value pair to the application's environment.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| key | Yes | Environment variable name (e.g., "DATABASE_URL", "API_KEY"). | |
| uuid | Yes | UUID of the application to add the environment variable to. | |
| value | Yes | Environment variable value. | |
| is_literal | No | Whether the value should be treated as a literal string without variable substitution. | |
| is_preview | No | Whether this variable applies to preview deployments. | |
| is_build_time | No | Whether this variable should be available during build time. |