Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/niklasrosenstein/hcl-template
Simple command to render HCL templates.
https://github.com/niklasrosenstein/hcl-template
Last synced: 4 days ago
JSON representation
Simple command to render HCL templates.
- Host: GitHub
- URL: https://github.com/niklasrosenstein/hcl-template
- Owner: NiklasRosenstein
- Created: 2023-08-23T14:56:41.000Z (about 1 year ago)
- Default Branch: develop
- Last Pushed: 2023-08-26T18:59:52.000Z (about 1 year ago)
- Last Synced: 2024-10-14T15:05:10.219Z (29 days ago)
- Language: Rust
- Size: 11.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# hcl-template
A simple wrapper around the [`hcl-rs`][https://crates.io/crates/hcl-rs] crate to render HCL template strings.
## Usage
$ cat example.tftpl
Hello ${name}!
$ cat values.yaml
name: World
$ hcl-template --template example.tftpl --values values.yaml
Hello World!## Known limitations
* Does not currently support sequences and maps in the values.