Skip to content

Commit aa0ecd3

Browse files
authored
Merge pull request #1787 from hashicorp/TF-27640-provider-version-0-68-0-tfe-workspace-settings-sets-auto-apply-default
remove provider schema default for auto_apply
2 parents 06f8326 + 385a902 commit aa0ecd3

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

CHANGELOG.md

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

3+
## v0.68.1
4+
5+
BUG FIXES:
6+
* `r/tfe_workspace_settings`: remove the schema default for auto_apply in case it is managed by `r/tfe_workspace` [#1787](https://github.com/hashicorp/terraform-provider-tfe/pull/1787)
7+
38
## v0.68.0
49

510
FEATURES:

internal/provider/resource_tfe_workspace_settings.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ import (
1717
"github.com/hashicorp/terraform-plugin-framework/path"
1818
"github.com/hashicorp/terraform-plugin-framework/resource"
1919
"github.com/hashicorp/terraform-plugin-framework/resource/schema"
20-
"github.com/hashicorp/terraform-plugin-framework/resource/schema/booldefault"
2120
"github.com/hashicorp/terraform-plugin-framework/resource/schema/planmodifier"
2221
"github.com/hashicorp/terraform-plugin-framework/resource/schema/stringplanmodifier"
2322
"github.com/hashicorp/terraform-plugin-framework/schema/validator"
@@ -355,7 +354,6 @@ func (r *workspaceSettings) Schema(ctx context.Context, req resource.SchemaReque
355354
Optional: true,
356355
Computed: true,
357356
Description: "If set to false a human will have to manually confirm a plan in HCP Terraform's UI to start an apply. If set to true, this resource will be automatically applied.",
358-
Default: booldefault.StaticBool(false),
359357
},
360358

361359
"assessments_enabled": schema.BoolAttribute{

0 commit comments

Comments
 (0)