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
+15-1Lines changed: 15 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,9 +3,23 @@ FEATURES:
3
3
***New resource**: `r/tfe_vault_oidc_configuration` for managing Vault OIDC configurations. [#1835](https://github.com/hashicorp/terraform-provider-tfe/pull/1835)
4
4
***New resource**: `r/tfe_aws_oidc_configuration` for managing AWS OIDC configurations. [#1835](https://github.com/hashicorp/terraform-provider-tfe/pull/1835)
5
5
***New resource**: `r/tfe_gcp_oidc_configuration` for managing GCP OIDC configurations. [#1835](https://github.com/hashicorp/terraform-provider-tfe/pull/1835)
6
-
***New resource**: `r/tfe_azure_oidc_configuration` for managing Azure OIDC configurations. [#1835](https://github.com/hashicorp/terraform-provider-tfe/pull/1835)
6
+
***New resource**: `r/tfe_azure_oidc_configuration` for managing Azure OIDC configurations. [#1835](https://github.com/hashicorp/terraform-provider-tfe/pull/1835)
7
7
***New resource**: `r/tfe_hyok_configuration` for managing HYOK configurations, by @helenjw. [#1835](https://github.com/hashicorp/terraform-provider-tfe/pull/1841)
8
8
9
+
## v0.70.0
10
+
11
+
FEATURES:
12
+
*`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)
13
+
*`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)
14
+
*`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)
15
+
*`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)
16
+
17
+
BUG FIXES:
18
+
*`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)
19
+
20
+
DEPRECATIONS:
21
+
*`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).
Copy file name to clipboardExpand all lines: docs/testing.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -49,6 +49,7 @@ these values with the environment variables specified below:
49
49
1.`RUN_TASKS_HMAC` - The optional HMAC Key that should be used for Run Task operations. The default is no key.
50
50
1.`GITHUB_APP_INSTALLATION_ID` - GitHub App installation internal id in the format `ghain-xxxxxxx`. Required for running any tests that use GitHub App VCS (workspace, policy sets, registry module).
51
51
1.`GITHUB_APP_INSTALLATION_NAME` - GitHub App installation name. Required for running tfe_github_app_installation data source test.
52
+
1.`ENABLE_HYOK` - Set `ENABLE_HYOK=1` to enable HYOK-related tests.
52
53
1.`HYOK_ORGANIZATION_NAME` - Name of an organization entitled to use HYOK. Required to run tests for HYOK resources and data sources.
53
54
54
55
**Note:** In order to run integration tests for **Paid** features you will need a token `TFE_TOKEN` with HCP Terraform or Terraform Enterprise administrator privileges, otherwise the attempt to upgrade an organization's feature set will fail.
0 commit comments