json2tfvars

simple tfvars (HCL) converter


License
MIT
Install
pip install json2tfvars==0.0.1

Documentation

About

simple tfvars (HCL) converter

Usage

usage: json2tfvars [-h] [--reverse] [--indent N] [FILE [FILE ...]]

positional arguments:
  FILE

optional arguments:
  -h, --help  show this help message and exit
  --reverse   expect tfvars (HCL) input
  --indent N  adjust identation levels
$ json2tfvars <<< '{"a":"b"}' | json2tfvars --reverse | jq -r '. + {"c":"d"}' | json2tfvars

a = "b"

c = "d"