A drop-in replacement for cdktf.TerraformStack that let's you define Terraform modules as construct
Project description
cdktf-tf-module-stack
A drop-in replacement for cdktf.TerraformStack that let's you define Terraform modules as construct.
Setup
Node.js
Run yarn add cdktf-tf-module-stack
(or npm install --save cdktf-tf-module-stack
) to install the package.
Python
Run pip install cdktf-tf-module-stack
to install the package.
Usage
import { App } from "cdktf";
import {
TFModuleStack,
TFModuleVariable,
ProviderRequirement,
} from "cdktf-tf-module-stack";
import { Resource } from "@cdktf/provider-null";
class MyAwesomeModule extends TFModuleStack {
constructor(scope: Construct, id: string) {
super(scope, id);
new ProviderRequirement(this, "null", "~> 2.0");
new Resource(this, "resource");
new TFModuleVariable(this, "my_var", {
type: "string",
description: "A variable",
default: "default",
});
}
}
const app = new App();
new MyAwesomeModule(app, "my-awesome-module");
app.synth();
This will synthesize a Terraform JSON file that looks like this:
{
"resource": {
"null_resource": {
"resource": {}
}
},
"terraform": {
"required_providers": {
"null": {
"source": "null",
"version": "~> 2.0"
}
},
"variable": {
"my_var": {
"default": "default",
"description": "A variable",
"type": "string"
}
}
}
}
Please note that the provider section is missing, so that the Terraform Workspace using the generated module can be used with any provider matching the version.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file cdktf-tf-module-stack-0.1.5.tar.gz
.
File metadata
- Download URL: cdktf-tf-module-stack-0.1.5.tar.gz
- Upload date:
- Size: 25.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8fe0416395918bd59f8dd582a0e4e62725cf42b73cf0bce2a41d1986c755476a |
|
MD5 | 00fa74f290bdb93f2cf821a461128ff6 |
|
BLAKE2b-256 | aeb98886891cd75fb5e1ff6630bb22f3eac62bea3a406df35418ef07d43c7257 |
File details
Details for the file cdktf_tf_module_stack-0.1.5-py3-none-any.whl
.
File metadata
- Download URL: cdktf_tf_module_stack-0.1.5-py3-none-any.whl
- Upload date:
- Size: 24.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 898dc6e8e590fbb34a03e9526345794e5503f71a0263ae279beb62206add2049 |
|
MD5 | 0eaf77782981915bdfe2ccf40ee6c692 |
|
BLAKE2b-256 | d2a91a096a1fe378bb6ed7b68ce10d93f706a14bc5c436db6799613ac468b5d4 |