diff --git a/internal/data_source_user.go b/internal/data_source_user.go index bee7861..cc59b46 100644 --- a/internal/data_source_user.go +++ b/internal/data_source_user.go @@ -27,7 +27,6 @@ func (d *userDataSource) Metadata(_ context.Context, req datasource.MetadataRequ func (d *userDataSource) Schema(_ context.Context, _ datasource.SchemaRequest, resp *datasource.SchemaResponse) { resp.Schema = schema.Schema{ MarkdownDescription: "Use this data source to retrieve information about a user.", - Attributes: map[string]schema.Attribute{ "id": schema.Int64Attribute{ Computed: true, diff --git a/internal/resource_user.go b/internal/resource_user.go index 356f02b..0e21e30 100644 --- a/internal/resource_user.go +++ b/internal/resource_user.go @@ -34,7 +34,6 @@ func (r *userResource) Schema(_ context.Context, _ resource.SchemaRequest, resp This resource allows you to add/remove users. When applied, a new user will be created. When destroyed, that user will be removed.`, - Attributes: map[string]schema.Attribute{ "id": schema.Int64Attribute{ Computed: true,