Skip to main content

Initializer

import { TerraformOutputConfig } from 'cdktn'

const terraformOutputConfig: TerraformOutputConfig = { ... }

Properties

NameTypeDescription
valueanyNo description.
dependsOnITerraformDependable[]No description.
descriptionstringNo description.
preconditionPreconditionNo description.
sensitivebooleanNo description.
staticIdbooleanIf set to true the synthesized Terraform Output will be named after the id passed to the constructor instead of the default (TerraformOutput.friendlyUniqueId).

valueRequired

public readonly value: any;
  • Type: any

dependsOnOptional

public readonly dependsOn: ITerraformDependable[];

descriptionOptional

public readonly description: string;
  • Type: string

preconditionOptional

public readonly precondition: Precondition;

sensitiveOptional

public readonly sensitive: boolean;
  • Type: boolean

staticIdOptional

public readonly staticId: boolean;
  • Type: boolean
  • Default: false
If set to true the synthesized Terraform Output will be named after the id passed to the constructor instead of the default (TerraformOutput.friendlyUniqueId).