Skip to content

Commit 155ebe1

Browse files
committed
Prep 0.55.0 for release
1 parent 36bc849 commit 155ebe1

File tree

8 files changed

+17
-16
lines changed

8 files changed

+17
-16
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
## v0.55.0
2+
23
FEATURES:
34
* `r/tfe_team`: Add attributes `manage_teams`, `manage_organization_access`, and `access_secret_teams` to `organization_access` on `tfe_team` by @juliannatetreault [#1313](https://github.com/hashicorp/terraform-provider-tfe/pull/1313)
45

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Declare the provider in your configuration and `terraform init` will automatical
2929
terraform {
3030
required_providers {
3131
tfe = {
32-
version = "~> 0.54.0"
32+
version = "~> 0.55.0"
3333
}
3434
}
3535
}

website/docs/cdktf/csharp/index.html.markdown

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ automatically installed by `terraform init` in the future:
7777
terraform {
7878
required_providers {
7979
tfe = {
80-
version = "~> 0.54.0"
80+
version = "~> 0.55.0"
8181
}
8282
}
8383
}
@@ -90,7 +90,7 @@ The above snippet using `RequiredProviders` is for Terraform 0.13+; if you are u
9090

9191
```hcl
9292
provider "tfe" {
93-
version = "~> 0.54.0"
93+
version = "~> 0.55.0"
9494
...
9595
}
9696
```
@@ -103,7 +103,7 @@ For more information on provider installation and constraining provider versions
103103
provider "tfe" {
104104
hostname = var.hostname # Optional, defaults to HCP Terraform `AppTerraformIo`
105105
token = var.token
106-
version = "~> 0.54.0"
106+
version = "~> 0.55.0"
107107
}
108108
109109
# Create an organization

website/docs/cdktf/go/index.html.markdown

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ automatically installed by `terraform init` in the future:
7777
terraform {
7878
required_providers {
7979
tfe = {
80-
version = "~> 0.54.0"
80+
version = "~> 0.55.0"
8181
}
8282
}
8383
}
@@ -90,7 +90,7 @@ The above snippet using `RequiredProviders` is for Terraform 0.13+; if you are u
9090

9191
```hcl
9292
provider "tfe" {
93-
version = "~> 0.54.0"
93+
version = "~> 0.55.0"
9494
...
9595
}
9696
```
@@ -103,7 +103,7 @@ For more information on provider installation and constraining provider versions
103103
provider "tfe" {
104104
hostname = var.hostname # Optional, defaults to HCP Terraform `AppTerraformIo`
105105
token = var.token
106-
version = "~> 0.54.0"
106+
version = "~> 0.55.0"
107107
}
108108
109109
# Create an organization

website/docs/cdktf/java/index.html.markdown

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ automatically installed by `terraform init` in the future:
7777
terraform {
7878
required_providers {
7979
tfe = {
80-
version = "~> 0.54.0"
80+
version = "~> 0.55.0"
8181
}
8282
}
8383
}
@@ -90,7 +90,7 @@ The above snippet using `requiredProviders` is for Terraform 0.13+; if you are u
9090

9191
```hcl
9292
provider "tfe" {
93-
version = "~> 0.54.0"
93+
version = "~> 0.55.0"
9494
...
9595
}
9696
```
@@ -103,7 +103,7 @@ For more information on provider installation and constraining provider versions
103103
provider "tfe" {
104104
hostname = var.hostname # Optional, defaults to HCP Terraform `appTerraformIo`
105105
token = var.token
106-
version = "~> 0.54.0"
106+
version = "~> 0.55.0"
107107
}
108108
109109
# Create an organization

website/docs/cdktf/python/index.html.markdown

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ automatically installed by `terraform init` in the future:
7777
terraform {
7878
required_providers {
7979
tfe = {
80-
version = "~> 0.54.0"
80+
version = "~> 0.55.0"
8181
}
8282
}
8383
}
@@ -90,7 +90,7 @@ The above snippet using `required_providers` is for Terraform 0.13+; if you are
9090

9191
```hcl
9292
provider "tfe" {
93-
version = "~> 0.54.0"
93+
version = "~> 0.55.0"
9494
...
9595
}
9696
```
@@ -103,7 +103,7 @@ For more information on provider installation and constraining provider versions
103103
provider "tfe" {
104104
hostname = var.hostname # Optional, defaults to Terraform Cloud `app.terraform.io`
105105
token = var.token
106-
version = "~> 0.54.0"
106+
version = "~> 0.55.0"
107107
}
108108
109109
# Create an organization

website/docs/cdktf/typescript/index.html.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ The above snippet using `required_providers` is for Terraform 0.13+; if you are
9090

9191
```hcl
9292
provider "tfe" {
93-
version = "~> 0.54.0"
93+
version = "~> 0.55.0"
9494
...
9595
}
9696
```
@@ -103,7 +103,7 @@ For more information on provider installation and constraining provider versions
103103
provider "tfe" {
104104
hostname = var.hostname # Optional, defaults to Terraform Cloud `appTerraformIo`
105105
token = var.token
106-
version = "~> 0.54.0"
106+
version = "~> 0.55.0"
107107
}
108108
109109
# Create an organization

website/docs/index.html.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ automatically installed by `terraform init` in the future:
7575
terraform {
7676
required_providers {
7777
tfe = {
78-
version = "~> 0.54.0"
78+
version = "~> 0.55.0"
7979
}
8080
}
8181
}

0 commit comments

Comments
 (0)