Configuring plugins
Plugins can be configured in the plugin menu in Valtimo. The plugin menu is found under the admin menu. Admin privileges are required to configure plugins.
Before plugins can be configured, both the backend and frontend dependencies are needed. See here for instructions on how to do this.
- 1.Go to the Admin menu
- 2.Go to the Plugin menu
- 3.Click the button 'Configure plugin +'
- 4.Select the plugin definition
- 5.Configure the plugin

Configuring a plugin
Plugin configurations can also be deployed when starting the application.
This can be done by creating one or more files anywhere on the classpath (resource folder) matching the following pattern:
*.pluginconfig.json
An example configuration can be found below:
[
{
"id": "e6525773-1863-4e92-92a1-9ed79508a819",
"title": "Example plugin configuration",
"pluginDefinitionKey": "example",
"properties": {
"someProperty": "value",
"someSecret": "${SOME_ENV_VALUE}"
}
},
{
...
}
]
The id (UUID) of the plugin should be generated manually. The same id's should be used when referencing configurations at the plugin processlink autodeployment.
The available properties can be found in the documentation of the plugin.
Values within the
properties
attribute can be resolved from the ENV (System.getEnv()
) by using the ${SOME_ENV_VALUE}
syntax.Last modified 2mo ago