Interface RemoteBackendRemoteStateReferenceArgs

The configuration options for a Terraform Remote State stored in the remote enhanced backend.

interface RemoteBackendRemoteStateReferenceArgs {
    backendType: "remote";
    hostname?: any;
    organization: Input<string>;
    token?: any;
    workspaces?: any;
}

Properties

backendType: "remote"

A constant describing the name of the Terraform backend, used as the discriminant for the union of backend configurations.

hostname?: any

The remote backend hostname to which to connect. Defaults to app.terraform.io.

organization: Input<string>

The name of the organization containing the targeted workspace(s).

token?: any

The token used to authenticate with the remote backend.

workspaces?: any

A block specifying which remote workspace(s) to use.

Generated using TypeDoc