Render Jsonnet templates in terraform.
data "jsonnet_template" "pipeline" {
jsonnet = file("pipeline.jsonnet")
jpath = [
"vendor"
]
}
output "rendered_json" {
value = data.jsonnet_template.pipeline.json
}
$ git clone https://github.com/andrein/terraform-provider-jsonnet.git
$ make install
Download the latest release to ~/.terraform.d/plugins
. See the terraform documentation for more details.