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

ApplyResults

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

Outputs and artifacts from applying a deployment.

interface ApplyResults {
artifacts?: string;
content?: string;
outputs?: {
[key: string]: TerraformOutput;
}
;
}

§Properties

§
artifacts?: string
[src]

Location of artifacts (e.g. logs) in Google Cloud Storage. Format: gs://{bucket}/{object}

§
content?: string
[src]

Location of a blueprint copy and other manifests in Google Cloud Storage. Format: gs://{bucket}/{object}

§
outputs?: {
[key: string]: TerraformOutput;
}
[src]

Map of output name to output info.