| Crates.io | hcl-template |
| lib.rs | hcl-template |
| version | 0.1.1 |
| created_at | 2023-08-23 14:59:51.639646+00 |
| updated_at | 2023-08-26 18:52:30.743011+00 |
| description | A simple wrapper around the `hcl` create to render HCL template strings. |
| homepage | |
| repository | https://github.com/NiklasRosenstein/hcl-template |
| max_upload_size | |
| id | 952123 |
| size | 16,238 |
A simple wrapper around the [hcl-rs][https://crates.io/crates/hcl-rs] crate to render HCL template strings.
$ cat example.tftpl
Hello ${name}!
$ cat values.yaml
name: World
$ hcl-template --template example.tftpl --values values.yaml
Hello World!