You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+33-5Lines changed: 33 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -2,15 +2,43 @@
2
2
3
3
A drop-in replacement for cdktf.TerraformStack that let's you define Terraform modules as construct.
4
4
5
-
## Setup
5
+
## Available Packages
6
6
7
-
### Node.js
7
+
### NPM
8
8
9
-
Run `yarn add @cdktf/tf-module-stack` (or `npm install --save @cdktf/tf-module-stack`) to install the package.
9
+
The npm package is available at [https://www.npmjs.com/package/@cdktf/tf-module-stack](https://www.npmjs.com/package/@cdktf/tf-module-stack).
10
10
11
-
### Python
11
+
`npm install @cdktf/tf-module-stack`
12
+
13
+
### PyPI
14
+
15
+
The PyPI package is available at [https://pypi.org/project/cdktf-tf-module-stack](https://pypi.org/project/cdktf-tf-module-stack).
16
+
17
+
`pipenv install cdktf-tf-module-stack`
18
+
19
+
### Nuget
20
+
21
+
The Nuget package is available at [https://www.nuget.org/packages/HashiCorp.Cdktf.TfModuleStack](https://www.nuget.org/packages/HashiCorp.Cdktf.TfModuleStack).
The Maven package is available at [https://mvnrepository.com/artifact/com.hashicorp/cdktf-tf-module-stack](https://mvnrepository.com/artifact/com.hashicorp/cdktf-tf-module-stack).
28
+
29
+
```
30
+
<dependency>
31
+
<groupId>com.hashicorp</groupId>
32
+
<artifactId>cdktf-tf-module-stack</artifactId>
33
+
<version>[REPLACE WITH DESIRED VERSION]</version>
34
+
</dependency>
35
+
```
36
+
37
+
### Go
38
+
39
+
The go package is generated into the [`github.com/cdktf/cdktf-tf-module-stack-go`](https://github.com/cdktf/cdktf-tf-module-stack-go) package.
12
40
13
-
Run `pip install cdktf-tf-module-stack` to install the package.
41
+
`go get github.com/cdktf/cdktf-tf-module-stack-go/tfmodulestack`
0 commit comments