@pulumi/pulumi - v3.242.0
    Preparing search index...

    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;
    }
    Index

    Properties

    Authentication options for the repository.

    branch?: string

    An optional branch to checkout.

    commitHash?: string

    Optional commit to checkout.

    projectPath?: string

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

    stackName: string

    The associated stack name.

    url?: string

    The URL of the repository.