Skip to content

Commit 7c7c54c

Browse files
chore: add installation instructions (#109)
1 parent 1acdb0d commit 7c7c54c

File tree

1 file changed

+33
-5
lines changed

1 file changed

+33
-5
lines changed

README.md

Lines changed: 33 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,43 @@
22

33
A drop-in replacement for cdktf.TerraformStack that let's you define Terraform modules as construct.
44

5-
## Setup
5+
## Available Packages
66

7-
### Node.js
7+
### NPM
88

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).
1010

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).
22+
23+
`dotnet add package HashiCorp.Cdktf.TfModuleStack`
24+
25+
### Maven
26+
27+
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.
1240

13-
Run `pip install cdktf-tf-module-stack` to install the package.
41+
`go get github.com/cdktf/cdktf-tf-module-stack-go/tfmodulestack`
1442

1543
## Usage
1644

0 commit comments

Comments
 (0)