diff --git a/port/blueprint/schema.go b/port/blueprint/schema.go index 6e78d4a3..f789e9b7 100644 --- a/port/blueprint/schema.go +++ b/port/blueprint/schema.go @@ -9,7 +9,6 @@ import ( "github.com/hashicorp/terraform-plugin-framework/resource" "github.com/hashicorp/terraform-plugin-framework/resource/schema" "github.com/hashicorp/terraform-plugin-framework/resource/schema/booldefault" - "github.com/hashicorp/terraform-plugin-framework/resource/schema/boolplanmodifier" "github.com/hashicorp/terraform-plugin-framework/resource/schema/planmodifier" "github.com/hashicorp/terraform-plugin-framework/resource/schema/stringplanmodifier" "github.com/hashicorp/terraform-plugin-framework/schema/validator" @@ -453,9 +452,6 @@ func BlueprintSchema() map[string]schema.Attribute { Optional: true, Computed: true, Default: booldefault.StaticBool(false), - PlanModifiers: []planmodifier.Bool{ - boolplanmodifier.UseStateForUnknown(), - }, }, } }