cdktf-tf-module-stack icon indicating copy to clipboard operation
cdktf-tf-module-stack copied to clipboard

A drop-in replacement for cdktf.TerraformStack that lets you define Terraform modules as constructs

Results 3 cdktf-tf-module-stack issues
Sort by recently updated
recently updated
newest added

### Description Using the following example ```ts import { App } from 'cdktf'; import { Construct } from 'constructs'; import { TFModuleStack, TFModuleVariable, TFModuleOutput, ProviderRequirement, } from '@cdktf/tf-module-stack'; import {...

bug

### Description Per the [documentation](https://github.com/cdktf/cdktf-tf-module-stack) on the TFModuleStack its unclear how this is supposed to be used (as its aligns to regular TF modules) in the context of a Stack....

documentation

### Description I have created a cdktf construct where ResourceGroup resource is created with name having conditional statement as follows: ``` let resGrp = new resourceGroup.ResourceGroup(this, "resGrp", { location: input.location,...

bug