Configuration passed to encryption key source providers during instantiation.
Key sources use this configuration to understand how to retrieve key material. The specific properties used depend on the key source implementation.
// Environment variable source configconst envConfig: EncryptionKeySourceConfig = { lookupValue: 'MJ_ENCRYPTION_KEY_PII'};// Config file source configconst fileConfig: EncryptionKeySourceConfig = { lookupValue: 'pii_master_key'}; Copy
// Environment variable source configconst envConfig: EncryptionKeySourceConfig = { lookupValue: 'MJ_ENCRYPTION_KEY_PII'};// Config file source configconst fileConfig: EncryptionKeySourceConfig = { lookupValue: 'pii_master_key'};
Optional
Optional additional configuration specific to the key source. Providers can cast this to their specific config type.
The identifier used to look up the key from the source.
Configuration passed to encryption key source providers during instantiation.
Key sources use this configuration to understand how to retrieve key material. The specific properties used depend on the key source implementation.
Example