Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

TerraformBlueprint

import type { TerraformBlueprint } from "https://googleapis.deno.dev/v1/config:v1.ts";

TerraformBlueprint describes the source of a Terraform root module which describes the resources and configs to be deployed.

interface TerraformBlueprint {
gcsSource?: string;
gitSource?: GitSource;
inputValues?: {
[key: string]: TerraformVariable;
}
;
}

§Properties

§
gcsSource?: string
[src]

Required. URI of an object in Google Cloud Storage. Format: gs://{bucket}/{object} URI may also specify an object version for zipped objects. Format: gs://{bucket}/{object}#{version}

§
gitSource?: GitSource
[src]

Required. URI of a public Git repo.

§
inputValues?: {
[key: string]: TerraformVariable;
}
[src]

Input variable values for the Terraform blueprint.