Skip to content

Commit 9a372fb

Browse files
authored
Merge pull request #1898 from hashicorp/changelog/vzero.71
Update changelog, version file and readme for v0.71.0 release
2 parents 3afedd5 + 1b6378b commit 9a372fb

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
## Unreleased
2+
3+
## v0.71.0
4+
25
FEATURES:
36
* **New resource**: `r/tfe_vault_oidc_configuration` for managing Vault OIDC configurations. by @helenjw [#1835](https://github.com/hashicorp/terraform-provider-tfe/pull/1835)
47
* **New resource**: `r/tfe_aws_oidc_configuration` for managing AWS OIDC configurations. by @helenjw [#1835](https://github.com/hashicorp/terraform-provider-tfe/pull/1835)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Declare the provider in your configuration and `terraform init` will automatical
2828
terraform {
2929
required_providers {
3030
tfe = {
31-
version = "~> 0.70.0"
31+
version = "~> 0.71.0"
3232
}
3333
}
3434
}
@@ -44,7 +44,7 @@ The above snippet using `required_providers` is for Terraform 0.13+; if you are
4444

4545
```hcl
4646
provider "tfe" {
47-
version = "~> 0.70.0"
47+
version = "~> 0.71.0"
4848
...
4949
}
5050
```

version/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.70.0
1+
0.71.0

website/docs/index.html.markdown

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ automatically installed by `terraform init` in the future:
7676
terraform {
7777
required_providers {
7878
tfe = {
79-
version = "~> 0.70.0"
79+
version = "~> 0.71.0"
8080
}
8181
}
8282
}
@@ -89,7 +89,7 @@ The above snippet using `required_providers` is for Terraform 0.13+; if you are
8989

9090
```hcl
9191
provider "tfe" {
92-
version = "~> 0.70.0"
92+
version = "~> 0.71.0"
9393
...
9494
}
9595
```
@@ -102,7 +102,7 @@ For more information on provider installation and constraining provider versions
102102
provider "tfe" {
103103
hostname = var.hostname # Optional, defaults to HCP Terraform `app.terraform.io`
104104
token = var.token
105-
version = "~> 0.70.0"
105+
version = "~> 0.71.0"
106106
}
107107
108108
# Create an organization

0 commit comments

Comments
 (0)