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
+5Lines changed: 5 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,7 @@
1
1
## Unreleased
2
2
3
+
## v0.70.0
4
+
3
5
FEATURES:
4
6
*`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)
5
7
*`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)
@@ -9,6 +11,9 @@ FEATURES:
9
11
BUG FIXES:
10
12
*`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)
11
13
14
+
DEPRECATIONS:
15
+
*`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