Socket
Book a DemoInstallSign in
Socket

@cdktf/hcl2json

Package Overview
Dependencies
Maintainers
4
Versions
806
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@cdktf/hcl2json

Transform HCL into JSON

latest
Source
npmnpm
Version
0.21.0
Version published
Weekly downloads
343K
0.37%
Maintainers
4
Weekly downloads
 
Created
Source

HCL2JSON

This is a WebAssembly wrapper for https://github.com/tmccombs/hcl2json

Usage

yarn add @cdktf/hcl2json

Parse HCL strings

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}"
      }
    ]
  }
}

Parse an entire directory

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

Parse an expression

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 }]

Development

With yarn build a Typescript compile is triggered and a Go build with a WASM target is performed.

Keywords

cdk

FAQs

Package last updated on 04 Jun 2025

Did you know?

Socket

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.

Install

Related posts