CDKTF 0.20 improves implementation of iterators and enables HCL output

CDK for Terraform 0.20 improves the existing implementation of iterators, allowing developers to handle complex scenarios related to dynamic resource creation.

The mission of CDK for Terraform (CDKTF) is to simplify Terraform adoption. We introduced the generally available version of CDKTF in August of 2022, enabling developers not familiar with HashiCorp Configuration Language (HCL) to write Terraform configurations in their choice of language, including TypeScript, Python, C#, Java, and Go. In CDKTF 0.12, we introduced a new API called TerraformIterator that supports dynamic list iterations on the block and resource level to enable workflows that users are familiar with in HCL.

Today, we’re releasing CDKTF version 0.20, which improves the existing implementation of iterators. This new support allows developers to handle more complex cases, in which resources are created based on data that’s known only at run time. CDKTF version 0.20 also enables HCL output and improves error messages.

The iterator improvements include:

  • Chaining iterators
  • Complex list iterators
  • Support mapping to primitive values

»Chaining iterators

CDKTF 0.20 supports accessing resources created by iterators. This was previously possible only with an escape hatch. To chain iterators you can use the TerraformIterator.fromResources() or TerraformIterator.fromDataSources() methods with the resource or data source you want to chain as an argument:

const s3BucketConfigurationIterator = TerraformIterator.fromMap({  website: {	name: "website-static-files",	tags: { app: "website" },  },  images: {	name: "images",	tags: { app: "image-converter" },  },}); const s3Buckets = new S3Bucket(this, "complex-iterator-buckets", {  forEach: s3BucketConfigurationIterator,  bucket: s3BucketConfigurationIterator.getString("name"),  tags: s3BucketConfigurationIterator.getStringMap("tags"),}); // This would be TerraformIterator.fromDataSources for data_sourcesconst s3BucketsIterator = TerraformIterator.fromResources(s3Buckets);const helpFile = new TerraformAsset(this, "help", {  path: "./help",}); new S3BucketObject(this, "object", {  forEach: s3BucketsIterator,  bucket: s3BucketsIterator.getString("id"),  key: "help",  source: helpFile.path,});

»Complex list iterators

We now support iterating on resource attributes containing values that are known only after apply. The most common example for this use case is validating an AWS Certificate Manager (ACM) certificate through DNS. In this case, the domain_validation_options attribute contains values that are known only after the AWS ACM certificate resource has been created:

// Creates a new AWS managed SSL Certificateconst cert = new AcmCertificate(this, "cert", {  domainName: "example.com",  validationMethod: "DNS",}); // The existing domain that we control and want to create an SSL certificate forconst dataAwsRoute53ZoneExample = new DataAwsRoute53Zone(this, "dns_zone", {  name: "example.com",  privateZone: false,}); // NEW: fromComplexList() allows iterating over the domain validation options//      while mapping it into a map with "domain_name" as the keyconst exampleForEachIterator = TerraformIterator.fromComplexList(  cert.domainValidationOptions,  "domain_name"); // This will create the DNS records to validate the ACM certificate based// on the domain validation options from the ACM Certificate Resourceconst records = new Route53Record(this, "record", {  forEach: exampleForEachIterator,  allowOverwrite: true,  name: exampleForEachIterator.getString("name"),  records: [exampleForEachIterator.getString("record")],  ttl: 60,  type: exampleForEachIterator.getString("type"),  zoneId: dataAwsRoute53ZoneExample.zoneId,}); const recordsIterator = TerraformIterator.fromResources(records); // This causes Terraform to wait until the validation through DNS was successfulnew AcmCertificateValidation(this, "validation", {  certificateArn: cert.arn,  validationRecordFqdns: Token.asList(recordsIterator.pluckProperty("fqdn")),});

»Support mapping to primitive values

Iterators now support expressing more variations of for expressions in HCL. For example, it is now possible to map a list of objects into a list of strings by “plucking” one of their properties

new TerraformLocal(this, "list-of-names", mapIterator.pluckProperty("name"));

The new functions are exposed on complex (i.e. non-primitive) computed (i.e. not configurable) lists. They include values(), keys(), pluckProperty(), forExpressionForList() and forExpressionForMap(). The latter two are very close to HCL, allowing you to leverage the full power of HCL for expressions without using an override escape hatch.

»Output HCL instead of Terraform JSON

CDKTF synth now supports HCL as an output, in addition to the Terraform JSON which was previously supported. This makes it easier to debug the configuration that CDKTF creates, as HCL output is easier for people to read.

Moreover, this means you can use CDKTF as a templating engine to generate a Terraform config that will then be used and edited by other teams. Finally, it means you can now use CDKTF with tooling that supports only Terraform HCL. Although Terraform Cloud’s native features, like policy evaluation and health assessments, work with JSON, other common tools, like code scanners and linters, support only HCL.

»Improved error messages

Error messages in the cdktf package now give more context and propose solutions to the problem at hand. For example:

Old:

No app could be identified for the construct at path 'path/to/construct'

New:

No app could be identified for the construct at path 'path/to/construct', likely a TerraformStack.
The scope of CDKTF's TerraformStack class is a single App instance created by 'const app = new App()'. The App is the root of your project that holds project configuration and validations.
You can learn more about the App here: https://developer.hashicorp.com/terraform/cdktf/concepts/cdktf-architecture#app-class:~:text=and%20Resource.-,App%20Class,-Each%20CDKTF%20project

»Try CDK for Terraform

If you’re new to the project, these tutorials for CDKTF are the best way to get started. You can dive deeper into our documentation with this overview of CDKTF.

Whether you’re still experimenting or actively using CDK for Terraform, we’d love to hear from you. Please file any bugs you encounter, let us know about your feature requests, and share your questions, thoughts, and experiences in the CDK for Terraform discussion forum.


Sign up for the latest HashiCorp news

By submitting this form, you acknowledge and agree that HashiCorp will process your personal information in accordance with the Privacy Policy.