Skip to content

Commit a8b8f42

Browse files
committed
Update CHANGELOG for release
1 parent 462aa62 commit a8b8f42

File tree

7 files changed

+21
-21
lines changed

7 files changed

+21
-21
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
# UNRELEASED
1+
## v0.51.1
22

33
BUG FIXES:
44
* `r/tfe_admin_organization_settings`: Fixed default provider organization usage, by @brandonc [1183](https://github.com/hashicorp/terraform-provider-tfe/pull/1183)
55
* `r/tfe_registry_gpg_key`: Fixed update plans when using default organization, by @brandonc [1190](https://github.com/hashicorp/terraform-provider-tfe/pull/1190)
66
* `/r/tfe_workspace_settings`: Fix compatibility with older versions of Terraform Enterprise when using agent execution by @brandonc [1193](https://github.com/hashicorp/terraform-provider-tfe/pull/1193)
77

8-
# v0.51.0
8+
## v0.51.0
99

1010
DEPRECATIONS and BREAKING CHANGES:
1111
* `r/tfe_workspace`: `execution_mode` and `agent_pool_id` attributes have been deprecated in favor of a new resource, `tfe_workspace_settings`. Note that these fields no longer compute defaults which is consistent with using a new resource to manage these same settings. In practice, this means that if you unset `execution_mode` or `agent_pool_id` without also creating a `tfe_workspace_settings`, the setting will no longer revert to the default "remote" mode. To migrate, relocate the `execution_mode` and `agent_pool_id` arguments to `tfe_workspace_settings`.

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

Lines changed: 4 additions & 4 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.50.0"
80+
version = "~> 0.51.1"
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.50.0"
93+
version = "~> 0.51.1"
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.50.0"
106+
version = "~> 0.51.1"
107107
}
108108
109109
# Create an organization
@@ -129,4 +129,4 @@ The following arguments are supported:
129129
arguments. Ensure that the organization already exists prior to using this argument.
130130
This can also be specified using the `TfeOrganization` environment variable.
131131

132-
<!-- cache-key: cdktf-0.17.0-pre.15 input-71b632c8101c3bde9d1598273955499b3ab09c1fe1051d376b5fc6c5538335fe -->
132+
<!-- cache-key: cdktf-0.17.0-pre.15 input-71b632c8101c3bde9d1598273955499b3ab09c1fe1051d376b5fc6c5538335fe -->

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

Lines changed: 4 additions & 4 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.50.0"
80+
version = "~> 0.51.1"
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.50.0"
93+
version = "~> 0.51.1"
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.50.0"
106+
version = "~> 0.51.1"
107107
}
108108
109109
# Create an organization
@@ -129,4 +129,4 @@ The following arguments are supported:
129129
arguments. Ensure that the organization already exists prior to using this argument.
130130
This can also be specified using the `TfeOrganization` environment variable.
131131

132-
<!-- cache-key: cdktf-0.17.0-pre.15 input-71b632c8101c3bde9d1598273955499b3ab09c1fe1051d376b5fc6c5538335fe -->
132+
<!-- cache-key: cdktf-0.17.0-pre.15 input-71b632c8101c3bde9d1598273955499b3ab09c1fe1051d376b5fc6c5538335fe -->

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

Lines changed: 4 additions & 4 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.50.0"
80+
version = "~> 0.51.1"
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.50.0"
93+
version = "~> 0.51.1"
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.50.0"
106+
version = "~> 0.51.1"
107107
}
108108
109109
# Create an organization
@@ -129,4 +129,4 @@ The following arguments are supported:
129129
arguments. Ensure that the organization already exists prior to using this argument.
130130
This can also be specified using the `tfeOrganization` environment variable.
131131

132-
<!-- cache-key: cdktf-0.17.0-pre.15 input-71b632c8101c3bde9d1598273955499b3ab09c1fe1051d376b5fc6c5538335fe -->
132+
<!-- cache-key: cdktf-0.17.0-pre.15 input-71b632c8101c3bde9d1598273955499b3ab09c1fe1051d376b5fc6c5538335fe -->

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -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.50.0"
92+
version = "~> 0.51.1"
9393
...
9494
}
9595
```
@@ -138,4 +138,4 @@ The following arguments are supported:
138138
arguments. Ensure that the organization already exists prior to using this argument.
139139
This can also be specified using the `TFE_ORGANIZATION` environment variable.
140140

141-
<!-- cache-key: cdktf-0.19.0 input-71b632c8101c3bde9d1598273955499b3ab09c1fe1051d376b5fc6c5538335fe -->
141+
<!-- cache-key: cdktf-0.19.0 input-71b632c8101c3bde9d1598273955499b3ab09c1fe1051d376b5fc6c5538335fe -->

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

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

9393
```hcl
9494
provider "tfe" {
95-
version = "~> 0.50.0"
95+
version = "~> 0.51.1"
9696
...
9797
}
9898
```
@@ -148,4 +148,4 @@ The following arguments are supported:
148148
arguments. Ensure that the organization already exists prior to using this argument.
149149
This can also be specified using the `TFE_ORGANIZATION` environment variable.
150150

151-
<!-- cache-key: cdktf-0.19.0 input-71b632c8101c3bde9d1598273955499b3ab09c1fe1051d376b5fc6c5538335fe -->
151+
<!-- cache-key: cdktf-0.19.0 input-71b632c8101c3bde9d1598273955499b3ab09c1fe1051d376b5fc6c5538335fe -->

website/docs/index.html.markdown

Lines changed: 3 additions & 3 deletions
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.50.0"
78+
version = "~> 0.51.1"
7979
}
8080
}
8181
}
@@ -88,7 +88,7 @@ The above snippet using `required_providers` is for Terraform 0.13+; if you are
8888

8989
```hcl
9090
provider "tfe" {
91-
version = "~> 0.50.0"
91+
version = "~> 0.51.1"
9292
...
9393
}
9494
```
@@ -101,7 +101,7 @@ For more information on provider installation and constraining provider versions
101101
provider "tfe" {
102102
hostname = var.hostname # Optional, defaults to Terraform Cloud `app.terraform.io`
103103
token = var.token
104-
version = "~> 0.50.0"
104+
version = "~> 0.51.1"
105105
}
106106
107107
# Create an organization

0 commit comments

Comments
 (0)