@@ -13,6 +13,7 @@ import (
13
13
"github.com/hashicorp/terraform-plugin-framework/path"
14
14
"github.com/hashicorp/terraform-plugin-framework/resource"
15
15
"github.com/hashicorp/terraform-plugin-framework/resource/schema"
16
+ "github.com/hashicorp/terraform-plugin-framework/resource/schema/int32default"
16
17
"github.com/hashicorp/terraform-plugin-framework/resource/schema/planmodifier"
17
18
"github.com/hashicorp/terraform-plugin-framework/resource/schema/stringdefault"
18
19
"github.com/hashicorp/terraform-plugin-framework/resource/schema/stringplanmodifier"
@@ -82,6 +83,8 @@ func (r *GroupResource) Schema(ctx context.Context, req resource.SchemaRequest,
82
83
"quota_allowance" : schema.Int32Attribute {
83
84
MarkdownDescription :"The number of quota credits to allocate to each user in the group." ,
84
85
Optional :true ,
86
+ Computed :true ,
87
+ Default :int32default .StaticInt32 (0 ),
85
88
},
86
89
"organization_id" : schema.StringAttribute {
87
90
MarkdownDescription :"The organization ID that the group belongs to. Defaults to the provider default organization ID." ,