
Product
Introducing Webhook Events for Pull Request Scans
Add real-time Socket webhook events to your workflows to automatically receive pull request scan results and security alerts in real time.
@cdktf/hcl2json
Advanced tools
This is a WebAssembly wrapper for https://github.com/tmccombs/hcl2json
yarn add @cdktf/hcl2json
import { parse } from '@cdktf/hcl2json'
const hcl = `
variable "name" {
description = "Name to be used on all the resources as identifier"
type = string
default = ""
}
`
(async () => {
// my-filename.tf isn't relevant for the functionality, just metadata
const json = await parse('my-filename.tf', hcl)
console.log(json)
})()
// =>
{
"variable": {
"name": [
{
"default": "",
"description": "Name to be used on all the resources as identifier",
"type": "${string}"
}
]
}
}
import { convertFiles } from "@cdktf/hcl2json";
(async () => {
const json = await convertFiles("/your/terraform/code");
console.log(json);
})();
// => Unified JSON representation of all *.tf and *.tf.json files in the given directory
import { getReferencesInExpression } from "@cdktf/hcl2json";
(async () => {
const variables = await getReferencesInExpression(
"main.tf",
"This is a ${var.input} embedded",
);
console.log(variables);
})();
// => [{ value: "var.input", startPosition: 12, endPosition: 23 }]
With yarn build
a Typescript compile is triggered and a Go build with a WASM target is performed.
0.21.0
Breaking Changes
Since long-term support for Node.js 18 has ended, we updated our minimum compatible node version to 20.9.
FAQs
Transform HCL into JSON
The npm package @cdktf/hcl2json receives a total of 0 weekly downloads. As such, @cdktf/hcl2json popularity was classified as not popular.
We found that @cdktf/hcl2json demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Add real-time Socket webhook events to your workflows to automatically receive pull request scan results and security alerts in real time.
Research
The Socket Threat Research Team uncovered malicious NuGet packages typosquatting the popular Nethereum project to steal wallet keys.
Product
A single platform for static analysis, secrets detection, container scanning, and CVE checks—built on trusted open source tools, ready to run out of the box.