Skip to main content
Version: Next

Configuration

In this section, the configuration of the control plane is explained. Configuration is used based on a config.yaml file which should be placed in the apps/backend/src folder. This config.yaml file is loaded when booting the application. The values get type checked, and it gives a clear error message if there is a configuration field missing or provided incorrectly. Next to the config.yaml file, you can also set environment variables. These override the values that are listed in the config.yaml file.

Databases

By default, the development database is sqlite. We use postgres databases for production type instances of the control planes.

Authentication

Authentication for frontend services can be done via the SSO Bridge. This helps users who need to login to several components to authenticate themselves faster.

Configuration parameters

KeyRequiredTypeDescriptionDefault
DatabaseConfig
dbDatabaseConfigDatabase configuration
db.type"sqlite" | "postgres"Type of database
db.databaseStringName of the database
db.synchronizeYesBooleanSynchronize database schema
db{type=sqlite}SQLiteConfigDatabase configuration
db{type=sqlite}.type"sqlite" | "postgres"Type of database"sqlite"
db{type=sqlite}.databaseStringName of the database
db{type=sqlite}.synchronizeYesBooleanSynchronize database schema
db{type=postgres}PostgresConfigDatabase configuration
db{type=postgres}.hostStringHost of the database
db{type=postgres}.portNumberPort of the database
db{type=postgres}.usernameStringUsername of the database
db{type=postgres}.passwordStringPassword of the database
db{type=postgres}.sslYesUnknownSSL configuration of the database
db{type=postgres}.type"sqlite" | "postgres"Type of database"postgres"
db{type=postgres}.databaseStringName of the database
db{type=postgres}.synchronizeYesBooleanSynchronize database schema
ServerConfig
serverYesServerConfigServer configuration
server.listenYesStringIP address the server listens on"0.0.0.0"
server.portYesNumberPort the server listens on3000
server.publicDomainYesStringPublic domain of the server"localhost"
server.publicAddressYesStringPublic address of the server"http://localhost:3000"
server.subPathYesStringSub path of the server
AuthConfig
authAuthConfigManagement authentication configuration
auth.enabledBooleanEnable authenticationtrue
auth.openIdConfigurationURLYesStringOpenID configuration URL
auth.callbackURLYesURLCallback URL the auth service will redirect users
auth.redirectURLYesURLRedirect URL to UI after login/logout
auth.clientIdYesStringClient ID
auth.clientSecretYesStringClient secret
auth.rolePathYesStringJSON path to extract roles from the token"$.roles[*]"
RegistryConfig
registryRegistryConfigRegistry configuration
registry.useRegistryBooleanUse registry to crawl catalogs
registry.registryUrlYesStringURL of the registry
registry.registryDidYesStringDID of the registry
registry.registryIntervalInMillisecondsNumberInterval in milliseconds to fetch registry30000
IamConfig
iamIamConfigIAM wallet configuration
iam.type"tsg" | "dev"Type of IAM service
iam.didIdStringDID identifier of the IAM service
iam{type=dev}DevWalletConfigIAM wallet configuration
iam{type=dev}.type"tsg" | "dev"Type of IAM service"dev"
iam{type=dev}.didIdStringDID identifier of the IAM service
iam{type=tsg}TsgWalletConfigIAM wallet configuration
iam{type=tsg}.walletUrlURLURL of the wallet management endpoint
iam{type=tsg}.siopUrlURLURL of the SIOP token endpoint
iam{type=tsg}.verifyUrlURLURL of the verification endpoint
iam{type=tsg}.typeFilterYesStringCredential type filter used as default
iam{type=tsg}.issuerFilterYesStringIssuer filter used as default
iam{type=tsg}.customFieldsYesArrayCustom presentation definition fields
iam{type=tsg}.type"tsg" | "dev"Type of IAM service"tsg"
iam{type=tsg}.didIdStringDID identifier of the IAM service
InitCatalog
initCatalogInitCatalogInitial catalog configuration
initCatalog.creatorStringCreator of the catalog
initCatalog.publisherStringPublisher of the catalog
initCatalog.titleStringTitle of the catalog
initCatalog.descriptionStringDescription of the catalog
initCatalog.datasetsYesStringSerialized initial datasets
PolicyConfig
defaultPolicyYesPolicyConfigDefault policy configuration
defaultPolicy.type"rules" | "manual"Definition type of the policy"rules"
PolicyRuleConfig
defaultPolicy.permissionsYesPolicyRuleConfig[]Permissions of the policy
defaultPolicy.permissions[].actionStringAction of the rule
RuleConstraintConfig
defaultPolicy.permissions[].constraintsYesRuleConstraintConfig[]Constraints of the rule
defaultPolicy.permissions[].constraints[].typeStringType of the constraint
defaultPolicy.permissions[].constraints[].valueStringValue of the constraint
PolicyRuleConfig
defaultPolicy.prohibitionsYesPolicyRuleConfig[]Prohibitions of the policy
defaultPolicy.prohibitions[].actionStringAction of the rule
RuleConstraintConfig
defaultPolicy.prohibitions[].constraintsYesRuleConstraintConfig[]Constraints of the rule
defaultPolicy.prohibitions[].constraints[].typeStringType of the constraint
defaultPolicy.prohibitions[].constraints[].valueStringValue of the constraint
defaultPolicy.rawYesObjectRaw ODRL policy
RuntimeConfig
runtimeRuntimeConfigRuntime configuration
runtime.controlPlaneInteractions"automatic" | "semi-manual" | "manual"Mode of control plane interactions"automatic"
runtime.colorStringPrimary UI color"#3B8BF6"
runtime.lightThemeUrlYesStringLight theme logo URL
runtime.darkThemeUrlYesStringDark theme logo URL