You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+14Lines changed: 14 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,20 @@ FEATURES:
5
5
***New Data Source:**`d/hyok_encrypted_data_key` is a new data source for finding
6
6
HYOK encrypted data keys by @dominicretli[#1842](https://github.com/hashicorp/terraform-provider-tfe/pull/1842)
7
7
8
+
## v0.70.0
9
+
10
+
FEATURES:
11
+
*`d/tfe_agent_pool`: Adds the `allowed_project_ids` and `excluded_workspace_ids` attributes, by @tylerworlf[#1822](https://github.com/hashicorp/terraform-provider-tfe/pull/1822)
12
+
*`r/tfe_agent_pool_allowed_projects`: Adds support for scoping agent pools to projects, by @tylerworlf[#1822](https://github.com/hashicorp/terraform-provider-tfe/pull/1822)
13
+
*`r/tfe_agent_pool_excluded_workspaces`: Adds support for excluding workspaces from the scope of agent pools, by @tylerworlf[#1822](https://github.com/hashicorp/terraform-provider-tfe/pull/1822)
14
+
*`r/tfe_project_settings`: Adds support for managing project settings. This initially supports setting a `default_execution_mode` and `default_agent_pool_id` which override the organization defaults. When not specified in the configuration, the organization defaults will be used and can be read from the resource. by @JarrettSpiker[#1822](Thttps://github.com/hashicorp/terraform-provider-tfe/pull/1822)
15
+
16
+
BUG FIXES:
17
+
*`r/tfe_workspace_settings`: Prevent unintended clearing of workspace-level tags on the first apply when tags is unset by making tag updates sparse. By @shwetamurali[#1851](https://github.com/hashicorp/terraform-provider-tfe/pull/1851)
18
+
19
+
DEPRECATIONS:
20
+
*`r/tfe_stack` The `deployment_names` has been removed, by @maed223[#1855](https://github.com/hashicorp/terraform-provider-tfe/pull/1855)
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
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.69.0"
31
+
version = "~> 0.70.0"
32
32
}
33
33
}
34
34
}
@@ -44,14 +44,14 @@ 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.69.0"
47
+
version = "~> 0.70.0"
48
48
...
49
49
}
50
50
```
51
51
52
52
Since v0.24.0, this provider requires [Terraform](https://developer.hashicorp.com/terraform/downloads) >= 0.12
53
53
54
-
Since v0.69.0, this provider requires [Terraform](https://developer.hashicorp.com/terraform/downloads) >= 1.0
54
+
Since v0.70.0, this provider requires [Terraform](https://developer.hashicorp.com/terraform/downloads) >= 1.0
55
55
56
56
For more information on provider installation and constraining provider versions, see the [Provider Requirements documentation](https://developer.hashicorp.com/terraform/language/providers/requirements).
0 commit comments