File tree Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 1
1
## Unreleased
2
2
3
+ ## v0.62.0
4
+
3
5
FEATURES:
4
6
* ` r/tfe_variable_set ` : Add ` parent_project_id ` attribute, by @mkam [ #1522 ] ( https://github.com/hashicorp/terraform-provider-tfe/pull/1522 )
5
7
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
28
28
terraform {
29
29
required_providers {
30
30
tfe = {
31
- version = "~> 0.61 .0"
31
+ version = "~> 0.62 .0"
32
32
}
33
33
}
34
34
}
@@ -44,7 +44,7 @@ The above snippet using `required_providers` is for Terraform 0.13+; if you are
44
44
45
45
``` hcl
46
46
provider "tfe" {
47
- version = "~> 0.61 .0"
47
+ version = "~> 0.62 .0"
48
48
...
49
49
}
50
50
```
Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ automatically installed by `terraform init` in the future:
75
75
terraform {
76
76
required_providers {
77
77
tfe = {
78
- version = "~> 0.61 .0"
78
+ version = "~> 0.62 .0"
79
79
}
80
80
}
81
81
}
@@ -88,7 +88,7 @@ The above snippet using `required_providers` is for Terraform 0.13+; if you are
88
88
89
89
``` hcl
90
90
provider "tfe" {
91
- version = "~> 0.61 .0"
91
+ version = "~> 0.62 .0"
92
92
...
93
93
}
94
94
```
@@ -101,7 +101,7 @@ For more information on provider installation and constraining provider versions
101
101
provider "tfe" {
102
102
hostname = var.hostname # Optional, defaults to HCP Terraform `app.terraform.io`
103
103
token = var.token
104
- version = "~> 0.61 .0"
104
+ version = "~> 0.62 .0"
105
105
}
106
106
107
107
# Create an organization
You can’t perform that action at this time.
0 commit comments