Skip to content
This repository has been archived by the owner on Oct 8, 2020. It is now read-only.

Commit

Permalink
archive provider
Browse files Browse the repository at this point in the history
  • Loading branch information
kmoe committed Jun 18, 2020
1 parent 6ff460c commit 970e656
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 4 deletions.
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
<!-- archived-provider -->
This Terraform provider is archived, per our [provider archiving process](https://terraform.io/docs/internals/archiving.html). What does this mean?

1. The code repository and all commit history will still be available.
1. Existing released binaries will remain available on the releases site.
1. Documentation will remain on the Terraform website.
1. Issues and pull requests are not being monitored.
1. New releases will not be published.

---

<!-- /archived-provider -->

Terraform Provider
==================

Expand Down
21 changes: 17 additions & 4 deletions website/docs/index.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ description: |-

# Template Provider

~> **This provider is deprecated.** We now recommend that you use one of the approaches in the Deprecation section below.

The template provider exposes data sources to use templates to generate
strings for other Terraform resources or outputs.

Expand All @@ -32,7 +34,18 @@ resource "aws_instance" "web" {
}
```

For Terraform 0.12 and later, the `template_file` data source has been
superseded by [the `templatefile` function](/docs/configuration/functions/templatefile.html),
which can be used directly in expressions without creating a separate data
resource.
## Deprecation

The template provider is deprecated and the provider has been archived in accordance with HashiCorp's [provider archiving process](https://terraform.io/docs/internals/archiving.html). While released versions of the provider will remain available, we recommend that you replace usages of this provider as follows.

### `template_file`

For Terraform 0.12 and later, the `template_file` data source has been superseded by [the `templatefile` function](/docs/configuration/functions/templatefile.html), which can be used directly in expressions without creating a separate data resource.

### `template_dir`

The [`hashicorp/dir/template`](https://registry.terraform.io/modules/hashicorp/dir/template) module offers an improved version of the functionality available in `template_dir`.

### `template_cloudinit_config`

This resource has been moved to a new provider, [`terraform-provider-cloudinit`](https://github.com/hashicorp/terraform-provider-cloudinit) as `cloudinit_config`, with no change in functionality.

0 comments on commit 970e656

Please sign in to comment.