Interface LocalBackendRemoteStateReferenceArgs

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

interface LocalBackendRemoteStateReferenceArgs {
    backendType: "local";
    path: Input<string>;
}

Properties

Properties

backendType: "local"

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

path: Input<string>

The path to the Terraform state file.

Generated using TypeDoc