diff options
author | Trygve Laugstøl <trygvis@inamo.no> | 2021-01-31 12:05:03 +0100 |
---|---|---|
committer | Trygve Laugstøl <trygvis@inamo.no> | 2021-01-31 12:05:03 +0100 |
commit | 59ef07a9f583f0f0f64055a47938d57516b43541 (patch) | |
tree | dccbf769d14a101d281359ebc9208fe774e74ed3 /module/ri-base/src/main/resources/templates | |
parent | 191799ab976bd7dad7162d62bf86f2d3cc5d0dbd (diff) | |
download | rules-sandbox-59ef07a9f583f0f0f64055a47938d57516b43541.tar.gz rules-sandbox-59ef07a9f583f0f0f64055a47938d57516b43541.tar.bz2 rules-sandbox-59ef07a9f583f0f0f64055a47938d57516b43541.tar.xz rules-sandbox-59ef07a9f583f0f0f64055a47938d57516b43541.zip |
Better Terraform support.
Diffstat (limited to 'module/ri-base/src/main/resources/templates')
-rw-r--r-- | module/ri-base/src/main/resources/templates/terraform/main.j2 | 10 | ||||
-rw-r--r-- | module/ri-base/src/main/resources/templates/terraform/variables.j2 | 10 |
2 files changed, 20 insertions, 0 deletions
diff --git a/module/ri-base/src/main/resources/templates/terraform/main.j2 b/module/ri-base/src/main/resources/templates/terraform/main.j2 new file mode 100644 index 0000000..009f4ed --- /dev/null +++ b/module/ri-base/src/main/resources/templates/terraform/main.j2 @@ -0,0 +1,10 @@ +terraform { + required_providers { +{% for alias, provider in main.providers.entrySet() %} + {{ alias }} = { + version = "{{ provider.version }}" + source = "{{ provider.source }}" + } +{%- endfor %} + } +} diff --git a/module/ri-base/src/main/resources/templates/terraform/variables.j2 b/module/ri-base/src/main/resources/templates/terraform/variables.j2 new file mode 100644 index 0000000..6c37d99 --- /dev/null +++ b/module/ri-base/src/main/resources/templates/terraform/variables.j2 @@ -0,0 +1,10 @@ +{%- for var in variables %} +variable "{{ var.name }}" { +{%- if var.type %} + type = {{ var.type }} +{% endif %} +{%- if var.default %} + default = {{ var.default }} +{% endif %} +} +{% endfor %} |