ApplyResults

Outputs and artifacts from applying a deployment.

JSON representation
{
  "content": string,
  "artifacts": string,
  "outputs": {
    string: {
      object (TerraformOutput)
    },
    ...
  }
}
Fields
content

string

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

artifacts

string

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

outputs

map (key: string, value: object (TerraformOutput))

Map of output name to output info.

An object containing a list of "key": value pairs. Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.

TerraformOutput

Describes a Terraform output.

JSON representation
{
  "sensitive": boolean,
  "value": value
}
Fields
sensitive

boolean

Identifies whether Terraform has set this output as a potential sensitive value.

value

value (Value format)

Value of output.