@@ -13,6 +13,7 @@ import (
1313"github.com/hashicorp/terraform-plugin-framework/path"
1414"github.com/hashicorp/terraform-plugin-framework/resource"
1515"github.com/hashicorp/terraform-plugin-framework/resource/schema"
16+ "github.com/hashicorp/terraform-plugin-framework/resource/schema/int32default"
1617"github.com/hashicorp/terraform-plugin-framework/resource/schema/planmodifier"
1718"github.com/hashicorp/terraform-plugin-framework/resource/schema/stringdefault"
1819"github.com/hashicorp/terraform-plugin-framework/resource/schema/stringplanmodifier"
@@ -82,6 +83,8 @@ func (r *GroupResource) Schema(ctx context.Context, req resource.SchemaRequest,
8283"quota_allowance" : schema.Int32Attribute {
8384MarkdownDescription :"The number of quota credits to allocate to each user in the group." ,
8485Optional :true ,
86+ Computed :true ,
87+ Default :int32default .StaticInt32 (0 ),
8588},
8689"organization_id" : schema.StringAttribute {
8790MarkdownDescription :"The organization ID that the group belongs to. Defaults to the provider default organization ID." ,