An output produced by a Pulumi program as part of a stack operation.

interface OutputValue {
    secret: boolean;
    value: any;
}

Properties

Properties

secret: boolean

True if and only if the value represents a secret.

value: any

The underlying output value.

Generated using TypeDoc