mirror of https://github.com/pulumi/pulumi.git
14 lines
509 B
Go
14 lines
509 B
Go
package constant
|
|
|
|
// ExecKindAutoLocal is a flag used to indentify a command as originating
|
|
// from automation API using a traditional Pulumi project.
|
|
const ExecKindAutoLocal = "auto.local"
|
|
|
|
// ExecKindAutoInline is a flag used to indentify a command as originating
|
|
// from automation API using an inline Pulumi project.
|
|
const ExecKindAutoInline = "auto.inline"
|
|
|
|
// ExecKindCLI is a flag used to indentify a command as originating
|
|
// from the CLI using a traditional Pulumi project.
|
|
const ExecKindCLI = "cli"
|