How does CDK Terrain work?
CDK Terrain leverages concepts and libraries from the AWS Cloud Development Kit to translate your code into infrastructure configuration files for Terraform. At a high level, you will:- Create an Application: Use either a built-in or a custom template to scaffold a project in your chosen language.
- Define Infrastructure: Use your chosen language to define the infrastructure you want to provision on one or more providers. CDKTN automatically extracts the schema from Terraform providers and modules to generate the necessary classes for your application.
- Deploy: Use
cdktnCLI commands to provision infrastructure with Terraform or OpenTofu, or synthesize your code into a JSON configuration file that others can use with Terraform directly.
When to use CDK Terrain
CDKTN offers many benefits, but it is not the right choice for every project. You should consider using CDKTN when:- You have a strong preference or need to use a procedural language to define infrastructure.
- You need to create abstractions to help manage complexity. For example, you want to create constructs to model a reusable infrastructure pattern composed of multiple resources and convenience methods.
- You are comfortable living on the cutting edge; CDKTN may still have breaking changes before our 1.0 release.
Choosing a Language for your Project
Consider which of the supported languages you are most familiar with and which language best fits your organization’s current tooling. We work towards providing feature parity and a good user experience across all supported languages, but there may be instances when new experimental features will not be available for all languages. If you plan to create and package your own constructs, we recommend choosing TypeScript. Using TypeScript allows you to use the cdktn constructs package generator to build and publish your constructs in multiple languages.Get Started
- Install CDKTN and set up your first project.
- Learn about CDKTN application architecture.
- Learn how to use key CDKTN concepts like providers, modules, and resources to define infrastructure.