Skip to main content
Version: Next

Configuration

In this section, the configuration of the http data plane is explained. Configuration is used based on a config.yaml file which should be placed in the apps/backend 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 http data planes.

Authentication

Authentication for frontend services can be done via OAuth. This helps users who need to login to several components to authenticate themselves faster. The data plane is tested against the SSO Bridge, with an Helm chart provided alongside the Helm chart of the data plane, but other OAuth services should be usable (e.g. Keycloak, or hosted OAuth services).

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[*]"
ControlPlaneConfig
controlPlaneControlPlaneConfigControl plane configuration
controlPlane.dataPlaneEndpointURLData plane management endpoint
controlPlane.managementEndpointURLControl plane management endpoint
controlPlane.controlEndpointURLPublic control plane endpoint
controlPlane.initializationDelayNumberInitialization delay in milliseconds5000
DatasetConfig
datasetYesDatasetConfigDataset configuration
dataset.type"versioned" | "collection"Type of the dataset configuration
dataset{type=versioned}YesVersionedDatasetConfigDataset configuration
dataset{type=versioned}.idYesStringID of the dataset
dataset{type=versioned}.titleStringTitle of the dataset
dataset{type=versioned}.baseSemanticModelRefYesURLBase semantic model reference of the dataset
VersionConfig
dataset{type=versioned}.versionsVersionConfig[]Versions of the dataset
dataset{type=versioned}.versions[].idYesStringVersion ID
dataset{type=versioned}.versions[].versionStringVersion number
dataset{type=versioned}.versions[].semanticModelRefYesURLSemantic model reference of the version
dataset{type=versioned}.versions[].authorizationYesStringAuthorization header required for the backend
DistributionConfig
dataset{type=versioned}.versions[].distributionsDistributionConfig[]Distributions of the version
dataset{type=versioned}.versions[].distributions[].mediaTypeYesStringMedia type of the distribution
dataset{type=versioned}.versions[].distributions[].schemaRefYesURLSchema reference of the distribution
dataset{type=versioned}.versions[].distributions[].openApiSpecRefYesURLOpenAPI specification reference of the distribution
dataset{type=versioned}.versions[].distributions[].backendUrlURLBackend URL of the distribution
dataset{type=versioned}.currentVersionStringCurrent version of the dataset
PolicyConfig
dataset{type=versioned}.policyYesPolicyConfigPolicy of the dataset
dataset{type=versioned}.policy.type"default" | "rules" | "manual"Definition type of the policy"default"
PolicyRuleConfig
dataset{type=versioned}.policy.permissionsYesPolicyRuleConfig[]Permissions of the policy
dataset{type=versioned}.policy.permissions[].actionStringAction of the rule
RuleConstraintConfig
dataset{type=versioned}.policy.permissions[].constraintsYesRuleConstraintConfig[]Constraints of the rule
dataset{type=versioned}.policy.permissions[].constraints[].typeStringType of the constraint
dataset{type=versioned}.policy.permissions[].constraints[].valueStringValue of the constraint
PolicyRuleConfig
dataset{type=versioned}.policy.prohibitionsYesPolicyRuleConfig[]Prohibitions of the policy
dataset{type=versioned}.policy.prohibitions[].actionStringAction of the rule
RuleConstraintConfig
dataset{type=versioned}.policy.prohibitions[].constraintsYesRuleConstraintConfig[]Constraints of the rule
dataset{type=versioned}.policy.prohibitions[].constraints[].typeStringType of the constraint
dataset{type=versioned}.policy.prohibitions[].constraints[].valueStringValue of the constraint
dataset{type=versioned}.policy.rawYesObjectRaw serialized ODRL offer
dataset{type=versioned}.type"versioned" | "collection"Type of the dataset configuration"versioned"
dataset{type=collection}YesCollectionDatasetConfigDataset configuration
dataset{type=collection}.baseSemanticModelRefYesURLBase semantic model reference of the dataset
PolicyConfig
dataset{type=collection}.basePolicyYesPolicyConfigBase policy of the dataset
dataset{type=collection}.basePolicy.type"default" | "rules" | "manual"Definition type of the policy"default"
PolicyRuleConfig
dataset{type=collection}.basePolicy.permissionsYesPolicyRuleConfig[]Permissions of the policy
dataset{type=collection}.basePolicy.permissions[].actionStringAction of the rule
RuleConstraintConfig
dataset{type=collection}.basePolicy.permissions[].constraintsYesRuleConstraintConfig[]Constraints of the rule
dataset{type=collection}.basePolicy.permissions[].constraints[].typeStringType of the constraint
dataset{type=collection}.basePolicy.permissions[].constraints[].valueStringValue of the constraint
PolicyRuleConfig
dataset{type=collection}.basePolicy.prohibitionsYesPolicyRuleConfig[]Prohibitions of the policy
dataset{type=collection}.basePolicy.prohibitions[].actionStringAction of the rule
RuleConstraintConfig
dataset{type=collection}.basePolicy.prohibitions[].constraintsYesRuleConstraintConfig[]Constraints of the rule
dataset{type=collection}.basePolicy.prohibitions[].constraints[].typeStringType of the constraint
dataset{type=collection}.basePolicy.prohibitions[].constraints[].valueStringValue of the constraint
dataset{type=collection}.basePolicy.rawYesObjectRaw serialized ODRL offer
dataset{type=collection}.authorizationYesStringAuthorization header required for the backend
dataset{type=collection}.mediaTypeYesStringMedia type of the dataset
dataset{type=collection}.schemaRefYesURLSchema reference of the dataset
dataset{type=collection}.openApiSpecRefYesURLOpenAPI specification reference of the dataset
dataset{type=collection}.type"versioned" | "collection"Type of the dataset configuration"collection"
DatasetItem
initCollectionYesDatasetItem[]Initial collection configuration
initCollection[].idYesStringID of the dataset item
initCollection[].titleStringTitle of the dataset item
initCollection[].versionStringVersion of the dataset item
initCollection[].backendUrlURLBase semantic model reference of the dataset item
initCollection[].authorizationYesStringAuthorization header required for the backend
initCollection[].mediaTypeYesStringMedia type of the dataset item
initCollection[].schemaRefYesURLSchema reference of the dataset item
initCollection[].openApiSpecRefYesURLOpenAPI specification reference of the dataset
PolicyConfig
initCollection[].policyYesPolicyConfigPolicy of the dataset item
initCollection[].policy.type"default" | "rules" | "manual"Definition type of the policy"default"
PolicyRuleConfig
initCollection[].policy.permissionsYesPolicyRuleConfig[]Permissions of the policy
initCollection[].policy.permissions[].actionStringAction of the rule
RuleConstraintConfig
initCollection[].policy.permissions[].constraintsYesRuleConstraintConfig[]Constraints of the rule
initCollection[].policy.permissions[].constraints[].typeStringType of the constraint
initCollection[].policy.permissions[].constraints[].valueStringValue of the constraint
PolicyRuleConfig
initCollection[].policy.prohibitionsYesPolicyRuleConfig[]Prohibitions of the policy
initCollection[].policy.prohibitions[].actionStringAction of the rule
RuleConstraintConfig
initCollection[].policy.prohibitions[].constraintsYesRuleConstraintConfig[]Constraints of the rule
initCollection[].policy.prohibitions[].constraints[].typeStringType of the constraint
initCollection[].policy.prohibitions[].constraints[].valueStringValue of the constraint
initCollection[].policy.rawYesObjectRaw serialized ODRL offer
LoggingConfig
loggingYesLoggingConfigLogging configuration
logging.debugYesBooleanEnable debug request logging
RuntimeConfig
runtimeRuntimeConfigRuntime configuration
runtime.colorStringPrimary UI color"#3B8BF6"
runtime.lightThemeUrlYesStringLight theme logo URL
runtime.darkThemeUrlYesStringDark theme logo URL
authorizationHeaderYesStringAuthorization header used in provider proxy"Authorization"