An input to/output from a pulumi config command.

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

Properties

Properties

secret?: boolean

True if and only if this configuration value is a secret.

value: string

The underlying configuration value.

Generated using TypeDoc