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
+30-6Lines changed: 30 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,17 +3,41 @@ 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)
7
-
***New resource**: `r/tfe_hyok_configuration` for managing HYOK configurations, by @helenjw. [#1835](https://github.com/hashicorp/terraform-provider-tfe/pull/1841)
6
+
***New resource**: `r/tfe_azure_oidc_configuration` for managing Azure OIDC configurations. [#1835](https://github.com/hashicorp/terraform-provider-tfe/pull/1835)
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.68.3
9
+
## v0.69.0
10
+
11
+
BREAKING CHANGES:
12
+
13
+
All resources have been upgraded to use the [latest Terraform plugin protocol](https://developer.hashicorp.com/terraform/plugin/terraform-plugin-protocol). This provider now requires a Terraform version of v1.0.0 or later.
14
+
15
+
ENHANCEMENTS:
16
+
*`r/tfe_oauth_client`: The `oauth_token` attribute no longer triggers resource replacement unless combined with other replacement-triggering attributes. Use `terraform apply -replace` to force replacement. By @lilincmu[#1825](https://github.com/hashicorp/terraform-provider-tfe/pull/1825)
17
+
18
+
FEATURES:
19
+
20
+
*`r/tfe_registry_module`: Add `source_directory` and `tag_prefix` registry module support for private registry monorepository, which is a beta feature and not available to all users, by @jillirami ([#1800](https://github.com/hashicorp/terraform-provider-tfe/pull/1800))
21
+
*`r/tfe_stack` Adds support for managing agent pools on a Stack, by @maed223[#1836](https://github.com/hashicorp/terraform-provider-tfe/pull/1836)
22
+
*`r/tfe_terraform_version`: Adds support for specifying architecture-specific binaries using the `archs` attribute, by @kelsi-hoyle[1762](https://github.com/hashicorp/terraform-provider-tfe/pull/1762)
23
+
*`r/tfe_opa_version`: Adds support for specifying architecture-specific binaries using the `archs` attribute, by @kelsi-hoyle[1762](https://github.com/hashicorp/terraform-provider-tfe/pull/1762)
24
+
*`r/tfe_sentinel_version`: Adds support for specifying architecture-specific binaries using the `archs` attribute, by @kelsi-hoyle[1762](https://github.com/hashicorp/terraform-provider-tfe/pull/1762)
25
+
26
+
DEPRECATIONS:
27
+
28
+
*`r/tfe_terraform_version`: The `url` and `sha` attributes are deprecated and will be removed in a future version. Use the `archs` attribute to specify architecture-specific binaries going forward, by @kelsi-hoyle[1762](https://github.com/hashicorp/terraform-provider-tfe/pull/1762)
29
+
*`r/tfe_opa_version`: The `url` and `sha` attributes are deprecated and will be removed in a future version. Use the `archs` attribute to specify architecture-specific binaries going forward, by @kelsi-hoyle[1762](https://github.com/hashicorp/terraform-provider-tfe/pull/1762)
30
+
*`r/tfe_sentinel_version`: The `url` and `sha` attributes are deprecated and will be removed in a future version. Use the `archs` attribute to specify architecture-specific binaries going forward, by @kelsi-hoyle[1762](https://github.com/hashicorp/terraform-provider-tfe/pull/1762)
31
+
*`r/tfe_oauth_client`: The `oauth_token` attribute no longer triggers resource replacement unless combined with other replacement-triggering attributes. Use `terraform apply -replace` to force replacement. By @lilincmu[#1825](https://github.com/hashicorp/terraform-provider-tfe/pull/1825)
32
+
*`r/tfe_test_variable`: Add missing argument reference and attributes documentation ([#1625](https://github.com/hashicorp/terraform-provider-tfe/issues/1625))
10
33
11
34
BUG FIXES:
35
+
12
36
*`r/tfe_notification_configuration`: update url attribute to be sensitive, by @jillirami[#1799](https://github.com/hashicorp/terraform-provider-tfe/pull/1799)
13
-
*`r/tfe_workspace`: fixed documentation Example Usages to use the `tfe_organization.test-organization.name` as organization name
14
-
*`r/tfe_workspace_run`: fixed documentation Example Usages to use the `tfe_organization.test-organization.name` as organization name
37
+
*`d/tfe_project`: fixes: 'duplicate set element' error, as workspaces can appear multiple times in get /workspaces, by @lewis-catley[#1817](https://github.com/hashicorp/terraform-provider-tfe/pull/1817)
38
+
*`r/tfe_workspace`: fixed documentation Example Usages to use the `tfe_organization.test-organization.name` as organization name
39
+
*`r/tfe_workspace_run`: fixed documentation Example Usages to use the `tfe_organization.test-organization.name` as organization name
Copy file name to clipboardExpand all lines: README.md
+4-2Lines changed: 4 additions & 2 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.68.3"
31
+
version = "~> 0.69.0"
32
32
}
33
33
}
34
34
}
@@ -44,13 +44,15 @@ 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.68.0"
47
+
version = "~> 0.69.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
55
+
54
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