Skip to content

Commit

Permalink
Remove unused and deprecated template provider (#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
Markus Muehlberger authored Jul 31, 2021
1 parent bb9767a commit 6ceffc6
Show file tree
Hide file tree
Showing 14 changed files with 0 additions and 51 deletions.
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,6 @@ Available targets:
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 0.13.0 |
| <a name="requirement_external"></a> [external](#requirement\_external) | >= 2.0 |
| <a name="requirement_local"></a> [local](#requirement\_local) | >= 1.3 |
| <a name="requirement_template"></a> [template](#requirement\_template) | >= 2.2 |
| <a name="requirement_utils"></a> [utils](#requirement\_utils) | >= 0.11.0 |

## Providers
Expand Down Expand Up @@ -428,7 +427,6 @@ For additional context, refer to some of these links.
- [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.
- [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.
- [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.
- [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.


## Help
Expand Down
4 changes: 0 additions & 4 deletions README.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,6 @@ references:
- name: "Terraform `templatefile` Function"
description: "`templatefile` reads the file at the given path and renders its content as a template using a supplied set of template variables."
url: "https://www.terraform.io/docs/configuration/functions/templatefile.html"
- name: "Terraform `template_file` data source"
description: "The `template_file` data source renders a template from a template string, which is usually loaded from an external file."
url: "https://registry.terraform.io/providers/hashicorp/template/latest/docs/data-sources/file"

# Short description of this project
description: |-
Expand Down Expand Up @@ -128,7 +125,6 @@ usage: |-
For an example on how to process `vars`, `settings`, `env` and `backend` configurations for all Terraform and helmfile components for a list of stacks,
see [examples/stacks](examples/stacks).
# Example usage
examples: |-
Expand Down
1 change: 0 additions & 1 deletion docs/terraform.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 0.13.0 |
| <a name="requirement_external"></a> [external](#requirement\_external) | >= 2.0 |
| <a name="requirement_local"></a> [local](#requirement\_local) | >= 1.3 |
| <a name="requirement_template"></a> [template](#requirement\_template) | >= 2.2 |
| <a name="requirement_utils"></a> [utils](#requirement\_utils) | >= 0.11.0 |

## Providers
Expand Down
4 changes: 0 additions & 4 deletions examples/complete/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,6 @@ terraform {
source = "hashicorp/local"
version = ">= 1.3"
}
template = {
source = "hashicorp/template"
version = ">= 2.2"
}
external = {
source = "hashicorp/external"
version = ">= 2.0"
Expand Down
4 changes: 0 additions & 4 deletions examples/remote-state/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,6 @@ terraform {
source = "hashicorp/local"
version = ">= 1.3"
}
template = {
source = "hashicorp/template"
version = ">= 2.2"
}
external = {
source = "hashicorp/external"
version = ">= 2.0"
Expand Down
4 changes: 0 additions & 4 deletions examples/spacelift/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,6 @@ terraform {
source = "hashicorp/local"
version = ">= 1.3"
}
template = {
source = "hashicorp/template"
version = ">= 2.2"
}
external = {
source = "hashicorp/external"
version = ">= 2.0"
Expand Down
4 changes: 0 additions & 4 deletions examples/stacks/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,6 @@ terraform {
source = "hashicorp/local"
version = ">= 1.3"
}
template = {
source = "hashicorp/template"
version = ">= 2.2"
}
external = {
source = "hashicorp/external"
version = ">= 2.0"
Expand Down
4 changes: 0 additions & 4 deletions modules/backend/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,6 @@ terraform {
source = "hashicorp/local"
version = ">= 1.3"
}
template = {
source = "hashicorp/template"
version = ">= 2.2"
}
external = {
source = "hashicorp/external"
version = ">= 2.0"
Expand Down
4 changes: 0 additions & 4 deletions modules/env/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,6 @@ terraform {
source = "hashicorp/local"
version = ">= 1.3"
}
template = {
source = "hashicorp/template"
version = ">= 2.2"
}
external = {
source = "hashicorp/external"
version = ">= 2.0"
Expand Down
4 changes: 0 additions & 4 deletions modules/remote-state/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,6 @@ terraform {
source = "hashicorp/local"
version = ">= 1.3"
}
template = {
source = "hashicorp/template"
version = ">= 2.2"
}
external = {
source = "hashicorp/external"
version = ">= 2.0"
Expand Down
4 changes: 0 additions & 4 deletions modules/settings/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,6 @@ terraform {
source = "hashicorp/local"
version = ">= 1.3"
}
template = {
source = "hashicorp/template"
version = ">= 2.2"
}
external = {
source = "hashicorp/external"
version = ">= 2.0"
Expand Down
4 changes: 0 additions & 4 deletions modules/spacelift/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,6 @@ terraform {
source = "hashicorp/local"
version = ">= 1.3"
}
template = {
source = "hashicorp/template"
version = ">= 2.2"
}
external = {
source = "hashicorp/external"
version = ">= 2.0"
Expand Down
4 changes: 0 additions & 4 deletions modules/vars/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,6 @@ terraform {
source = "hashicorp/local"
version = ">= 1.3"
}
template = {
source = "hashicorp/template"
version = ">= 2.2"
}
external = {
source = "hashicorp/external"
version = ">= 2.0"
Expand Down
4 changes: 0 additions & 4 deletions versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,6 @@ terraform {
source = "hashicorp/local"
version = ">= 1.3"
}
template = {
source = "hashicorp/template"
version = ">= 2.2"
}
external = {
source = "hashicorp/external"
version = ">= 2.0"
Expand Down

0 comments on commit 6ceffc6

Please sign in to comment.