Update configuration properties

Signed-off-by: Tomas Dabasinskas <tomas@dabasinskas.net>
This commit is contained in:
Tomas Dabasinskas
2023-02-05 23:02:05 +02:00
parent a1efcf9a65
commit e3048fc810
2 changed files with 3 additions and 3 deletions
@@ -46,7 +46,7 @@ The following configuration is an example of how a setup could look for importin
```yaml
catalog:
providers:
puppet:
puppetdb:
default:
# (Required) The host of PuppetDB API instance:
host: https://puppetdb.example.com
+2 -2
View File
@@ -29,9 +29,9 @@ export interface Config {
*/
providers?: {
/**
* Puppet entity provider configuration. Uses "default" as default ID for the single config variant.
* PuppetDB Entity Provider configuration. Uses "default" as default ID for the single config variant.
*/
puppet?: ProviderConfig | Record<string, ProviderConfig>;
puppetdb?: ProviderConfig | Record<string, ProviderConfig>;
};
};
}