Interface RemoteGitProgramArgs

Description of a stack backed by a remote Pulumi program in a Git repository.

interface RemoteGitProgramArgs {
    auth?: RemoteGitAuthArgs;
    branch?: string;
    commitHash?: string;
    projectPath?: string;
    stackName: string;
    url?: string;
}

Properties

Authentication options for the repository.

branch?: string

Optional branch to checkout.

commitHash?: string

Optional commit to checkout.

projectPath?: string

Optional path relative to the repo root specifying location of the Pulumi program.

stackName: string

The name of the associated Stack

url?: string

The URL of the repository.

Generated using TypeDoc