Skip to content

Commit 6ceffc6

Browse files
author
Markus Muehlberger
authored
Remove unused and deprecated template provider (#31)
1 parent bb9767a commit 6ceffc6

14 files changed

Lines changed: 0 additions & 51 deletions

File tree

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,6 @@ Available targets:
346346
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 0.13.0 |
347347
| <a name="requirement_external"></a> [external](#requirement\_external) | >= 2.0 |
348348
| <a name="requirement_local"></a> [local](#requirement\_local) | >= 1.3 |
349-
| <a name="requirement_template"></a> [template](#requirement\_template) | >= 2.2 |
350349
| <a name="requirement_utils"></a> [utils](#requirement\_utils) | >= 0.11.0 |
351350

352351
## Providers
@@ -428,7 +427,6 @@ For additional context, refer to some of these links.
428427
- [Terraform Module Requirements](https://www.terraform.io/docs/registry/modules/publish.html#requirements) - HashiCorp's guidance on all the requirements for publishing a module. Meeting the requirements for publishing a module is extremely easy.
429428
- [Terraform Version Pinning](https://www.terraform.io/docs/configuration/terraform.html#specifying-a-required-terraform-version) - The required_version setting can be used to constrain which versions of the Terraform CLI can be used with your configuration.
430429
- [Terraform `templatefile` Function](https://www.terraform.io/docs/configuration/functions/templatefile.html) - `templatefile` reads the file at the given path and renders its content as a template using a supplied set of template variables.
431-
- [Terraform `template_file` data source](https://registry.terraform.io/providers/hashicorp/template/latest/docs/data-sources/file) - The `template_file` data source renders a template from a template string, which is usually loaded from an external file.
432430

433431

434432
## Help

README.yaml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -91,9 +91,6 @@ references:
9191
- name: "Terraform `templatefile` Function"
9292
description: "`templatefile` reads the file at the given path and renders its content as a template using a supplied set of template variables."
9393
url: "https://www.terraform.io/docs/configuration/functions/templatefile.html"
94-
- name: "Terraform `template_file` data source"
95-
description: "The `template_file` data source renders a template from a template string, which is usually loaded from an external file."
96-
url: "https://registry.terraform.io/providers/hashicorp/template/latest/docs/data-sources/file"
9794

9895
# Short description of this project
9996
description: |-
@@ -128,7 +125,6 @@ usage: |-
128125
For an example on how to process `vars`, `settings`, `env` and `backend` configurations for all Terraform and helmfile components for a list of stacks,
129126
see [examples/stacks](examples/stacks).
130127
131-
132128
# Example usage
133129
examples: |-
134130

docs/terraform.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 0.13.0 |
77
| <a name="requirement_external"></a> [external](#requirement\_external) | >= 2.0 |
88
| <a name="requirement_local"></a> [local](#requirement\_local) | >= 1.3 |
9-
| <a name="requirement_template"></a> [template](#requirement\_template) | >= 2.2 |
109
| <a name="requirement_utils"></a> [utils](#requirement\_utils) | >= 0.11.0 |
1110

1211
## Providers

examples/complete/versions.tf

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,6 @@ terraform {
66
source = "hashicorp/local"
77
version = ">= 1.3"
88
}
9-
template = {
10-
source = "hashicorp/template"
11-
version = ">= 2.2"
12-
}
139
external = {
1410
source = "hashicorp/external"
1511
version = ">= 2.0"

examples/remote-state/versions.tf

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,6 @@ terraform {
66
source = "hashicorp/local"
77
version = ">= 1.3"
88
}
9-
template = {
10-
source = "hashicorp/template"
11-
version = ">= 2.2"
12-
}
139
external = {
1410
source = "hashicorp/external"
1511
version = ">= 2.0"

examples/spacelift/versions.tf

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,6 @@ terraform {
66
source = "hashicorp/local"
77
version = ">= 1.3"
88
}
9-
template = {
10-
source = "hashicorp/template"
11-
version = ">= 2.2"
12-
}
139
external = {
1410
source = "hashicorp/external"
1511
version = ">= 2.0"

examples/stacks/versions.tf

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,6 @@ terraform {
66
source = "hashicorp/local"
77
version = ">= 1.3"
88
}
9-
template = {
10-
source = "hashicorp/template"
11-
version = ">= 2.2"
12-
}
139
external = {
1410
source = "hashicorp/external"
1511
version = ">= 2.0"

modules/backend/versions.tf

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,6 @@ terraform {
66
source = "hashicorp/local"
77
version = ">= 1.3"
88
}
9-
template = {
10-
source = "hashicorp/template"
11-
version = ">= 2.2"
12-
}
139
external = {
1410
source = "hashicorp/external"
1511
version = ">= 2.0"

modules/env/versions.tf

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,6 @@ terraform {
66
source = "hashicorp/local"
77
version = ">= 1.3"
88
}
9-
template = {
10-
source = "hashicorp/template"
11-
version = ">= 2.2"
12-
}
139
external = {
1410
source = "hashicorp/external"
1511
version = ">= 2.0"

modules/remote-state/versions.tf

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,6 @@ terraform {
66
source = "hashicorp/local"
77
version = ">= 1.3"
88
}
9-
template = {
10-
source = "hashicorp/template"
11-
version = ">= 2.2"
12-
}
139
external = {
1410
source = "hashicorp/external"
1511
version = ">= 2.0"

0 commit comments

Comments
 (0)