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
+16-3Lines changed: 16 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,11 +3,27 @@
3
3
FEATURES:
4
4
***New Resource:**`tfe_team_notification_configuration` is a new resource for managing team notification configurations, by @jfreda ([#1540](https://github.com/hashicorp/terraform-provider-tfe/pull/1540))
5
5
6
+
## v0.62.0
7
+
8
+
FEATURES:
9
+
*`r/tfe_variable_set`: Add `parent_project_id` attribute, by @mkam[#1522](https://github.com/hashicorp/terraform-provider-tfe/pull/1522)
10
+
11
+
## v0.61.0
12
+
13
+
DEPRECATIONS:
14
+
*`r/tfe_workspace`: `global_remote_state` and `remote_state_consumer_ids` have been **deprecated** and moved to `tfe_workspace_settings` (see ENHANCEMENTS below for more details)
15
+
16
+
FEATURES:
17
+
*`r/tfe_audit_trail_token` is a new resource for managing audit trail tokens in organization, by @glensarti and @c4po[1533](https://github.com/hashicorp/terraform-provider-tfe/pull/1533)
18
+
6
19
## v0.60.1
7
20
8
21
BUG FIXES:
9
22
*`r/tfe_policy`: enforcement level can be updated on OPA policies by @glennsarti[#1521](https://github.com/hashicorp/terraform-provider-tfe/pull/1521)
10
23
24
+
ENHANCEMENTS:
25
+
*`r/tfe_workspace_settings`: `global_remote_state` and `remote_state_consumer_ids` can now be managed using `tfe_workspace_settings`. This enhancement avoids the possibility of a mutual dependency between two or more workspaces that may access each others' state by @brandonc[#1524](https://github.com/hashicorp/terraform-provider-tfe/pull/1524)
26
+
11
27
## v0.60.0
12
28
13
29
BUG FIXES:
@@ -22,9 +38,6 @@ FEATURES:
22
38
23
39
## v0.59.0
24
40
25
-
FEATURES:
26
-
*`r/tfe_audit_trail_token` is a new resource for managing audit trail tokens in organization, by @c4po[1488](https://github.com/hashicorp/terraform-provider-tfe/pull/1488)
27
-
28
41
## BREAKING CHANGES
29
42
30
43
*`r/tfe_team`: Default "secret" visibility has been removed from tfe_team because it now requires explicit or owner access. The default, "organization", is now computed by the platform. by @brandonc[#1439](https://github.com/hashicorp/terraform-provider-tfe/pull/1439)
@@ -212,3 +241,19 @@ func resourceTFEVariableSetDelete(d *schema.ResourceData, meta interface{}) erro
212
241
funcwarnWorkspaceIdsDeprecation() {
213
242
log.Printf("[WARN] The workspace_ids field of tfe_variable_set is deprecated as of release 0.33.0 and may be removed in a future version. The preferred method of associating a variable set to a workspace is by using the tfe_workspace_variable_set resource.")
Deprecated: "Use resource `tfe_workspace_settings` to modify the workspace `global_remote_state`. `global_remote_state` on `tfe_workspace` is no longer validated properly and will be removed in a future release of the provider.",
162
159
},
163
160
164
161
"remote_state_consumer_ids": {
165
-
Type: schema.TypeSet,
166
-
Optional: true,
167
-
Computed: true,
168
-
Elem: &schema.Schema{Type: schema.TypeString},
162
+
Type: schema.TypeSet,
163
+
Optional: true,
164
+
Computed: true,
165
+
Elem: &schema.Schema{Type: schema.TypeString},
166
+
Deprecated: "Use resource `tfe_workspace_settings` to modify the workspace `remote_state_consumer_ids`. `remote_state_consumer_ids` on `tfe_workspace` is no longer validated properly on this resource and This attribute will be removed in a future release of the provider.",
0 commit comments