hcl/cmd/hcldec
Masayuki Morita cec773f974 Fix various stale links to spec.md
These resulted from repository reorganization in preparation for the 2.0.0 release.
2020-01-09 11:02:20 -08:00
..
examples cmd/hcldec: Command-line tool for converting HCL config to JSON 2018-02-03 15:37:11 -08:00
README.md Change module path to github.com/hashicorp/hcl/v2 2019-09-09 15:46:40 -07:00
diags_json.go Unfold the "hcl" directory up into the root 2019-09-09 16:08:19 -07:00
main.go cmd/hcldec: Allow overriding the removal of nulls 2019-10-01 15:59:10 -07:00
spec-format.md Fix various stale links to spec.md 2020-01-09 11:02:20 -08:00
spec.go Fix import ordering from the move from hcl2 repository 2019-12-11 07:34:30 -08:00
spec_funcs.go cmd/hcldec: make cty stdlib functions available to specs 2018-02-04 10:33:35 -08:00
type_expr.go Unfold the "hcl" directory up into the root 2019-09-09 16:08:19 -07:00
vars.go Unfold the "hcl" directory up into the root 2019-09-09 16:08:19 -07:00

README.md

hcldec

hcldec is a command line tool that transforms HCL input into JSON output using a decoding specification given by the user.

This tool is intended as a "glue" tool, with use-cases like the following:

  • Define a HCL-based configuration format for a third-party tool that takes JSON as input, and then translate the HCL configuration into JSON before running the tool. (See the npm-package example.)

  • Use HCL from languages where a HCL parser/decoder is not yet available. At the time of writing, that's any language other than Go.

  • In particular, define a HCL-based configuration format for a shell script and then use jq to load the result into environment variables for further processing. (See the sh-config-file example.)

Installation

If you have a working Go development environment, you can install this tool with go get in the usual way:

$ go get -u github.com/hashicorp/hcl/v2/cmd/hcldec

This will install hcldec in $GOPATH/bin, which usually places it into your shell PATH so you can then run it as hcldec.

Usage

usage: hcldec --spec=<spec-file> [options] [hcl-file ...]
  -o, --out string          write to the given file, instead of stdout
  -s, --spec string         path to spec file (required)
  -V, --vars json-or-file   provide variables to the given configuration file(s)
  -v, --version             show the version number and immediately exit

The most important step in using hcldec is to write the specification that defines how to interpret the given configuration files and translate them into JSON. The following is a simple specification that creates a JSON object from two top-level attributes in the input configuration:

object {
  attr "name" {
    type     = string
    required = true
  }
  attr "is_member" {
    type = bool
  }
}

Specification files are conventionally kept in files with a .hcldec extension. We'll call this one example.hcldec.

With the above specification, the following input file example.conf is valid:

name = "Raul"

The spec and the input file can then be provided to hcldec to extract a JSON representation:

$ hcldec --spec=example.hcldec example.conf
{"name": "Raul"}

The specification defines both how to map the input into a JSON data structure and what input is valid. The required = true specified for the name allows hcldec to detect and raise an error when an attribute of that name is not provided:

$ hcldec --spec=example.hcldec typo.conf
Error: Unsupported attribute

  on example.conf line 1:
   1: namme = "Juan"

An attribute named "namme" is not expected here. Did you mean "name"?

Error: Missing required attribute

  on example.conf line 2:

The attribute "name" is required, but no definition was found.

Further Reading

For more details on the .hcldec specification file format, see the spec file documentation.