File tree Expand file tree Collapse file tree 4 files changed +9
-7
lines changed Expand file tree Collapse file tree 4 files changed +9
-7
lines changed Original file line number Diff line number Diff line change 11## Unreleased
22
3- ENHANCEMENTS:
3+ ## v0.67.1
4+
5+ BUG FIXES:
46* ` r/tfe_workspace ` update ` tags ` to be a computed attribute, by @Maed223 [ #1767 ] ( https://github.com/hashicorp/terraform-provider-tfe/pull/1767 )
57
68## v0.67.0
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ Declare the provider in your configuration and `terraform init` will automatical
2828terraform {
2929 required_providers {
3030 tfe = {
31- version = "~> 0.67.0 "
31+ version = "~> 0.67.1 "
3232 }
3333 }
3434}
@@ -44,7 +44,7 @@ The above snippet using `required_providers` is for Terraform 0.13+; if you are
4444
4545``` hcl
4646provider "tfe" {
47- version = "~> 0.67.0 "
47+ version = "~> 0.67.1 "
4848 ...
4949}
5050```
Original file line number Diff line number Diff line change 1- 0.67.0
1+ 0.67.1
Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ automatically installed by `terraform init` in the future:
7474terraform {
7575 required_providers {
7676 tfe = {
77- version = "~> 0.67.0 "
77+ version = "~> 0.67.1 "
7878 }
7979 }
8080}
@@ -87,7 +87,7 @@ The above snippet using `required_providers` is for Terraform 0.13+; if you are
8787
8888``` hcl
8989provider "tfe" {
90- version = "~> 0.67.0 "
90+ version = "~> 0.67.1 "
9191 ...
9292}
9393```
@@ -100,7 +100,7 @@ For more information on provider installation and constraining provider versions
100100provider "tfe" {
101101 hostname = var.hostname # Optional, defaults to HCP Terraform `app.terraform.io`
102102 token = var.token
103- version = "~> 0.67.0 "
103+ version = "~> 0.67.1 "
104104}
105105
106106# Create an organization
You can’t perform that action at this time.
0 commit comments