Sha256: 6c0d6ecd5accad5b372b873fc749888a8949dc0a376f6741c49c175478157e36
Contents?: true
Size: 1.54 KB
Versions: 1
Compression:
Stored size: 1.54 KB
Contents
# terraform-template-renderer Provides a ruby executable which will take a path to an ERB template as it's only positional argument and render that with a json blob passed in to STDIN. The keys in the json blob will be used as instance variable names to use in the template. The result will be returned inside a json blob with a single key, the name of which is rendered. For example if your template is Hello <%= @my_key %>! And you execute the command as: echo '{ "my_key": "dear reader" }' | template_renderer path_to_my_template You will produce { "rendered": "Hello dear reader!" } The purpose for this strange behaviour is to be a [terraform external provider](https://www.terraform.io/docs/providers/external/data_source.html) to render arbitrarily complex templates, terraform passes in the variables to render as a json blob to stdin as described above and expects a json blob back. ## ERB Template notes Trim mode is enabled and the trim character is a hyphen `-`. ## Examples There are a number of examples in the examples folder. To run these examples you will need terraform 0.11, you can run the example as follows: cd examples/simple_strings terraform init terraform apply In each example there is an erb template and a terraform file, applying the terraform code will produce a file called `example_output`. ___WARNING___: Some of the examples incur AWS costs, _ALWAYS_ remember to `terraform destroy` after you have finished running the example. You are solely responsible for any AWS costs incurred running these examples.
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
terraform-template-renderer-0.2.0 | README.md |