Detalhes do pacote

@cdktf/hcl-tools

hashicorp499.9kMPL-2.00.21.0

Interact with HCL helper libraries for output of HCL configuration

cdk, cdktf, terraform, hcl

readme (leia-me)

@cdktf/hcl-tools

This library is meant to house commonly used HCL tools by CDKTF. Currently, it only supports the hclwrite Golang library and specifically the Format function.

Usage

import { format } from "@cdktf/hcl-tools";

const unformattedHcl = `
resource "random_pet" "my_pet" {
}
`

const formatted = await format(unformattedHcl);