interface ConfigurationVariableValue {
    allowOverride?: boolean;
    isSecret?: boolean;
    value?: string;
}

Properties

allowOverride?: boolean

Gets and sets if a variable can be overridden at deployment time or not.

isSecret?: boolean

Gets or sets as variable is secret or not.

value?: string

Gets and sets value of the configuration variable.