projen-cdktf-hybrid-construct 0.1.50 → 0.1.51
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -4
- package/package.json +1 -1
package/README.md
CHANGED
@@ -67,7 +67,7 @@ project.synth();
|
|
67
67
|
|
68
68
|
If you want to republish an existing Terraform module as a CDKTF construct or if you want to repackage them with an easier to use API you can use the `TerraformModule` template.
|
69
69
|
|
70
|
-
|
70
|
+
```js
|
71
71
|
const { HybridModule } = require("projen-cdktf-hybrid-construct");
|
72
72
|
|
73
73
|
const project = new TerraformModule({
|
@@ -91,8 +91,7 @@ const project = new TerraformModule({
|
|
91
91
|
});
|
92
92
|
|
93
93
|
project.synth();
|
94
|
-
|
95
|
-
|
94
|
+
```
|
96
95
|
|
97
96
|
## Publishing
|
98
97
|
|
@@ -127,7 +126,7 @@ new HybridModule({
|
|
127
126
|
module: name.replace(/-/g, "_"),
|
128
127
|
},
|
129
128
|
});
|
130
|
-
|
129
|
+
```
|
131
130
|
|
132
131
|
#### Maven (Java)
|
133
132
|
|