Skip to content

Commit

Permalink
Merge pull request #1582 from hashicorp/v0.63.0-update
Browse files Browse the repository at this point in the history
Update latest version to v0.63.0
  • Loading branch information
Maed223 authored Jan 23, 2025
2 parents bea6406 + 41ac041 commit 74ac7d9
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
## Unreleased

## v.0.63.0

BUG FIXES:
* `r/tfe_workspace_settings`: Allow multiple unknown values in `remote_state_consumer_ids`, by @brandonc [#1569](https://github.com/hashicorp/terraform-provider-tfe/pull/1569)

FEATURES:
* **New Resource:** `tfe_team_notification_configuration` is a new resource for managing team notification configurations, by @jfreda ([#1540](https://github.com/hashicorp/terraform-provider-tfe/pull/1540))

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Declare the provider in your configuration and `terraform init` will automatical
terraform {
required_providers {
tfe = {
version = "~> 0.62.0"
version = "~> 0.63.0"
}
}
}
Expand All @@ -44,7 +44,7 @@ The above snippet using `required_providers` is for Terraform 0.13+; if you are

```hcl
provider "tfe" {
version = "~> 0.62.0"
version = "~> 0.63.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.62.0"
version = "~> 0.63.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.62.0"
version = "~> 0.63.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.62.0"
version = "~> 0.63.0"
}
# Create an organization
Expand Down

0 comments on commit 74ac7d9

Please sign in to comment.