Use Variables to centrally manage configuration and secrets referenced by ResinKit services.
Launch the UI
Features
- List variables with name and description
- Create variables (name, value, optional description)
- Delete variables from the table using action buttons
- View variable details (value is fetched securely when requested)
Usage
Notes
The UI uses the following API methods under the hood:list_variables()
list_variables()
Retrieves the current list of variables for display.
create_variable(name, value, description)
create_variable(name, value, description)
Creates a new variable. The value is only fetched when explicitly requested.
delete_variable(name)
delete_variable(name)
Removes the specified variable.
get_variable(name)
get_variable(name)
Fetches a single variable including its value.
Troubleshooting
- Ensure
RESINKIT_BASE_URLand credentials are set if your server requires auth - If the table is empty, check connectivity and permissions
Related
- Data Sources UI: Sources
- Flink SQL UI: Flink SQL
- Mintlify llms.txt: Optimize for AI indexing

