How to hide rendering of strings in output of cdktf?
I’m managing my infrastructure using CDKTF. I use Helm to install charts into my kubernetes cluster. I render the values for these helm charts using EJS like so
Can we diff multiple stacks at once using cdktf?
I’ve tried to plan multiple stacks using CDK for Terraform by providing the following command cdktf diff stack1 stack2 stack3
, but it is only showing the diff for the first stack only. Is there anyway we can get the diff for multiple or all stacks using cdktf diff
command?
Is it mandatory to instantiate a provider at the beginning of the constructor in Terraform CDK?
Is instantiating AwsProvider
mandatory in the example given below? If yes, why? If not, why?
CDKtf ERROR: Cannot initialize a project in a non-empty directory
I’m getting “ERROR: Cannot initialize a project in a non-empty directory” while trying to use “cdktf init”
Trouble with using assumed roles in external modules. How to add providers to external modules?
Cheers I´m trying to figure out how I can define providers with role definitions explicit when using external providers. As I believe this gives me errors when I try to make one role assume another and for specifically modules I get errors.
When I use an SSO role which has the correct permission in the same account as where I try to execute terraform I works. Basically: Goal make super platform roles that can apply to a broad range of environments.
Accessing Terraform Data Sources with CDK during run- not synthesis time
A Terraform project requires providers to be known upfront in a static manner; that is, I cannot use dynamic content like a Terraform data source to determine the number and configuration of providers.