File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed 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.68.0 "
31
+ version = "~> 0.68.1 "
32
32
}
33
33
}
34
34
}
Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ automatically installed by `terraform init` in the future:
74
74
terraform {
75
75
required_providers {
76
76
tfe = {
77
- version = "~> 0.68.0 "
77
+ version = "~> 0.68.1 "
78
78
}
79
79
}
80
80
}
@@ -87,7 +87,7 @@ The above snippet using `required_providers` is for Terraform 0.13+; if you are
87
87
88
88
``` hcl
89
89
provider "tfe" {
90
- version = "~> 0.68.0 "
90
+ version = "~> 0.68.1 "
91
91
...
92
92
}
93
93
```
@@ -100,7 +100,7 @@ For more information on provider installation and constraining provider versions
100
100
provider "tfe" {
101
101
hostname = var.hostname # Optional, defaults to HCP Terraform `app.terraform.io`
102
102
token = var.token
103
- version = "~> 0.68.0 "
103
+ version = "~> 0.68.1 "
104
104
}
105
105
106
106
# Create an organization
You can’t perform that action at this time.
0 commit comments