@@ -11,8 +11,6 @@ import (
1111 "github.com/hashicorp/terraform-plugin-framework/path"
1212 "github.com/hashicorp/terraform-plugin-framework/resource"
1313 "github.com/hashicorp/terraform-plugin-framework/resource/schema"
14- "github.com/hashicorp/terraform-plugin-framework/resource/schema/planmodifier"
15- "github.com/hashicorp/terraform-plugin-framework/resource/schema/stringplanmodifier"
1614 "github.com/hashicorp/terraform-plugin-framework/types"
1715)
1816
@@ -54,9 +52,6 @@ func (r *policyResource) Schema(_ context.Context, _ resource.SchemaRequest, res
5452 "id" : schema.StringAttribute {
5553 Computed : true ,
5654 Description : "Unique identifier for this resource" ,
57- PlanModifiers : []planmodifier.String {
58- stringplanmodifier .UseStateForUnknown (),
59- },
6055 },
6156 "name" : schema.StringAttribute {
6257 Required : true ,
@@ -82,16 +77,10 @@ func (r *policyResource) Schema(_ context.Context, _ resource.SchemaRequest, res
8277 "created_at" : schema.StringAttribute {
8378 Computed : true ,
8479 Description : "Timestamp when the policy was created" ,
85- PlanModifiers : []planmodifier.String {
86- stringplanmodifier .UseStateForUnknown (),
87- },
8880 },
8981 "creator" : schema.StringAttribute {
9082 Computed : true ,
9183 Description : "User who created the policy" ,
92- PlanModifiers : []planmodifier.String {
93- stringplanmodifier .UseStateForUnknown (),
94- },
9584 },
9685 "updated_at" : schema.StringAttribute {
9786 Computed : true ,
0 commit comments