A description of the Stack's configuration and encryption metadata.

interface StackSettings {
    config?: {
        [key: string]: StackSettingsConfigValue;
    };
    encryptedKey?: string;
    encryptionSalt?: string;
    secretsProvider?: string;
}

Properties

config?: {
    [key: string]: StackSettingsConfigValue;
}

Type declaration

encryptedKey?: string
encryptionSalt?: string
secretsProvider?: string

Generated using TypeDoc