Skip to content

Commit

Permalink
Merge pull request #1545 from hashicorp/0.61.0-release
Browse files Browse the repository at this point in the history
v0.61.0 CHANGELOG
  • Loading branch information
Maed223 authored Dec 12, 2024
2 parents d7817d7 + c0a34f6 commit 88c7362
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
## Unreleased

## v0.61.0

DEPRECATIONS:
* `r/tfe_workspace`: `global_remote_state` and `remote_state_consumer_ids` have been **deprecated** and moved to `tfe_workspace_settings` (see ENHANCEMENTS below for more details)

Expand Down
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<img alt="Terraform" src="https://www.datocms-assets.com/2885/1629941242-logo-terraform-main.svg" width="600px">


# HCP Terraform and Terraform Enterprise Provider

The official Terraform provider for [HCP Terraform and Terraform Enterprise](https://www.hashicorp.com/products/terraform).
Expand Down Expand Up @@ -29,7 +28,7 @@ Declare the provider in your configuration and `terraform init` will automatical
terraform {
required_providers {
tfe = {
version = "~> 0.60.1"
version = "~> 0.61.0"
}
}
}
Expand All @@ -45,7 +44,7 @@ The above snippet using `required_providers` is for Terraform 0.13+; if you are

```hcl
provider "tfe" {
version = "~> 0.60.1"
version = "~> 0.61.0"
...
}
```
Expand Down
6 changes: 3 additions & 3 deletions website/docs/index.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ automatically installed by `terraform init` in the future:
terraform {
required_providers {
tfe = {
version = "~> 0.60.1"
version = "~> 0.61.0"
}
}
}
Expand All @@ -88,7 +88,7 @@ The above snippet using `required_providers` is for Terraform 0.13+; if you are

```hcl
provider "tfe" {
version = "~> 0.60.1"
version = "~> 0.61.0"
...
}
```
Expand All @@ -101,7 +101,7 @@ For more information on provider installation and constraining provider versions
provider "tfe" {
hostname = var.hostname # Optional, defaults to HCP Terraform `app.terraform.io`
token = var.token
version = "~> 0.60.1"
version = "~> 0.61.0"
}
# Create an organization
Expand Down

0 comments on commit 88c7362

Please sign in to comment.