Modules
A Terraform module is a single directory that contains one or more configuration files.
Modules let you reuse configurations across projects and teams, saving time, enforcing consistency, and reducing errors. For example, you could create a module to describe the configuration for all of your organization's public website buckets. When you package and share this module, other users can incorporate it into their configurations. As requirements evolve, you can make changes to your module once, release a new version, and apply those changes everywhere that module is used.
You can specify any existing public or private module in your cdktf.json
file, and CDK for Terraform (CDKTF) generates the necessary code bindings for you to use in your application.
Install Modules
You can use modules from the Terraform Registry and other sources like GitHub in your application. For example, the following TypeScript project has a main.ts
file that defines AWS resources and uses the AWS VPC module.
Add Module to cdktf.json
To use a module in your application, you must first add it to the terraformModules
array in the cdktf.json
configuration file.
To add a module from the Terraform Registry or a private registry, provide a fully qualified name: registry-namespace/module-name
.
For local modules, use the object format.
For performance reasons, we don't automatically generate bindings for submodules. To generate bindings for submodules, specify the module source as terraform-aws-modules/vpc/aws//submodules/vpc-endpoints
, where after the //
is the path to the submodule in the modules repository. Refer to the Terraform source specification for more details.
When you are using local modules that reference other local modules you need to add all referenced modules to the terraformModules
array.
Generate Module Bindings
Go to the working directory and run cdktf get
. CDKTF automatically creates the appropriate module bindings in the ./.gen
directory for you to use in your application.
Configure Modules
You can configure modules in the same way as resources, with one exception.
For module inputs that use the map
type, like map(string)
or list(map(string))
, you must specify the map values as strings. You must also ensure that the keys follow the required format listed in the module's documentation. For example, the module may specify that the keys must be in snake case.
Work with Module Outputs
Modules often return data that you can use as inputs to other modules or resources. When this data is only available after Terraform applies the configuration, you must use Terraform Outputs.
Examples
The following example uses a local module and references its output as a Terraform output.
Create Modules
While we generally recommend generating code bindings for modules, you can also use the TerraformHclModule
class to reference any module that Terraform supports. Both methods create identical synthesized Terraform configuration files, but using TerraformHclModule
does not generate any types or type-safe inputs or outputs.
The following example uses TerraformHclModule
to import an AWS module.