File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ Declare the provider in your configuration and `terraform init` will automatical
2929terraform {
3030 required_providers {
3131 tfe = {
32- version = "~> 0.55 .0"
32+ version = "~> 0.56 .0"
3333 }
3434 }
3535}
@@ -45,7 +45,7 @@ The above snippet using `required_providers` is for Terraform 0.13+; if you are
4545
4646``` hcl
4747provider "tfe" {
48- version = "~> 0.53 .0"
48+ version = "~> 0.56 .0"
4949 ...
5050}
5151```
Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ automatically installed by `terraform init` in the future:
7575terraform {
7676 required_providers {
7777 tfe = {
78- version = "~> 0.55 .0"
78+ version = "~> 0.56 .0"
7979 }
8080 }
8181}
@@ -88,7 +88,7 @@ The above snippet using `required_providers` is for Terraform 0.13+; if you are
8888
8989``` hcl
9090provider "tfe" {
91- version = "~> 0.53 .0"
91+ version = "~> 0.56 .0"
9292 ...
9393}
9494```
@@ -101,7 +101,7 @@ For more information on provider installation and constraining provider versions
101101provider "tfe" {
102102 hostname = var.hostname # Optional, defaults to HCP Terraform `app.terraform.io`
103103 token = var.token
104- version = "~> 0.53 .0"
104+ version = "~> 0.56 .0"
105105}
106106
107107# Create an organization
You can’t perform that action at this time.
0 commit comments