ConfigValue is the input/output of a pulumi config command. It has a plaintext value, and an option boolean indicating secretness.

interface ConfigValue {
    secret?: boolean;
    value: string;
}

Properties

Properties

secret?: boolean
value: string

Generated using TypeDoc