mirror of https://github.com/pulumi/pulumi.git
18 lines
688 B
Go
18 lines
688 B
Go
package constant
|
|
|
|
// ExecKindAutoLocal is a flag used to identify a command as originating
|
|
// from automation API using a traditional Pulumi project.
|
|
const ExecKindAutoLocal = "auto.local"
|
|
|
|
// ExecKindAutoInline is a flag used to identify a command as originating
|
|
// from automation API using an inline Pulumi project.
|
|
const ExecKindAutoInline = "auto.inline"
|
|
|
|
// ExecKindCLI is a flag used to identify a command as originating
|
|
// from the CLI using a traditional Pulumi project.
|
|
const ExecKindCLI = "cli"
|
|
|
|
// ExitStatusLoggedError is the exit status to indicate that a pulumi program
|
|
// has failed, but successfully logged an error message to the engine
|
|
const ExitStatusLoggedError = 32
|