A simple wrapper around the [hcl-rs][https://crates.io/crates/hcl-rs] crate to render HCL template strings.
hcl-rs
$ cat example.tftpl Hello ${name}! $ cat values.yaml name: World $ hcl-template --template example.tftpl --values values.yaml Hello World!