Skip to content

Commit 7ad39d0

Browse files
drewmullensebasslash
authored andcommitted
rebase and rm deprecations
1 parent e934038 commit 7ad39d0

File tree

2 files changed

+13
-12
lines changed

2 files changed

+13
-12
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
## Unreleased
22

3+
Features:
4+
5+
* `r/tfe_workspace_settings`: offers more arguments for managing the workspace configuration, by @drewmullen [#1757](https://github.com/hashicorp/terraform-provider-tfe/pull/1757)
6+
37
## v0.67.1
48

59
BUG FIXES:

internal/provider/resource_tfe_workspace.go

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -91,10 +91,9 @@ func resourceTFEWorkspace() *schema.Resource {
9191
},
9292

9393
"description": {
94-
Type: schema.TypeString,
95-
Computed: true,
96-
Optional: true,
97-
Deprecated: "Use resource tfe_workspace_settings to modify the workspace description. This attribute will be removed in a future release of the provider.",
94+
Type: schema.TypeString,
95+
Computed: true,
96+
Optional: true,
9897
},
9998

10099
"agent_pool_id": {
@@ -112,10 +111,9 @@ func resourceTFEWorkspace() *schema.Resource {
112111
},
113112

114113
"auto_apply": {
115-
Type: schema.TypeBool,
116-
Optional: true,
117-
Computed: true,
118-
Deprecated: "Use resource tfe_workspace_settings to modify the workspace auto_apply settings. This attribute will be removed in a future release of the provider.",
114+
Type: schema.TypeBool,
115+
Optional: true,
116+
Computed: true,
119117
},
120118

121119
"auto_apply_run_trigger": {
@@ -183,10 +181,9 @@ func resourceTFEWorkspace() *schema.Resource {
183181
},
184182

185183
"assessments_enabled": {
186-
Type: schema.TypeBool,
187-
Optional: true,
188-
Computed: true,
189-
Deprecated: "Use resource tfe_workspace_settings to modify the workspace assessments settings. This attribute will be removed in a future release of the provider.",
184+
Type: schema.TypeBool,
185+
Optional: true,
186+
Computed: true,
190187
},
191188

192189
"operations": {

0 commit comments

Comments
 (0)