TerraformVariable
import type { TerraformVariable } from "https://googleapis.deno.dev/v1/workloadmanager:v1.ts";In order to align with Infra Manager dependency, we create the same TerraformVariable message to represent a Terraform input variable, by following Infra Manager's API documentation: https://cloud.google.com/infrastructure-manager/docs/reference/rest A Terraform input variable.
interface TerraformVariable {
inputValue?: any;
}