diff --git a/internal/resource_crawler/crawler_resource_gen.go b/internal/resource_crawler/crawler_resource_gen.go index e16ebfb..11a00dc 100644 --- a/internal/resource_crawler/crawler_resource_gen.go +++ b/internal/resource_crawler/crawler_resource_gen.go @@ -105,8 +105,10 @@ func CrawlerResourceSchema(ctx context.Context) schema.Schema { MarkdownDescription: "Crawler configuration (YAML)", }, "crawler": schema.StringAttribute{ - Optional: true, - Computed: true, + Optional: true, + Computed: true, + Description: "The UUID of the crawler", + MarkdownDescription: "The UUID of the crawler", }, "created_at": schema.StringAttribute{ Computed: true, diff --git a/internal/resource_custom_headers/custom_headers_resource_gen.go b/internal/resource_custom_headers/custom_headers_resource_gen.go index 950bf39..f2032a7 100644 --- a/internal/resource_custom_headers/custom_headers_resource_gen.go +++ b/internal/resource_custom_headers/custom_headers_resource_gen.go @@ -19,12 +19,16 @@ func CustomHeadersResourceSchema(ctx context.Context) schema.Schema { MarkdownDescription: "Custom headers", }, "organization": schema.StringAttribute{ - Optional: true, - Computed: true, + Optional: true, + Computed: true, + Description: "Organization identifier", + MarkdownDescription: "Organization identifier", }, "project": schema.StringAttribute{ - Optional: true, - Computed: true, + Optional: true, + Computed: true, + Description: "Project identifier", + MarkdownDescription: "Project identifier", }, }, } diff --git a/internal/resource_project/project_resource_gen.go b/internal/resource_project/project_resource_gen.go index 490ce59..414c2a9 100644 --- a/internal/resource_project/project_resource_gen.go +++ b/internal/resource_project/project_resource_gen.go @@ -62,12 +62,16 @@ func ProjectResourceSchema(ctx context.Context) schema.Schema { MarkdownDescription: "Project name", }, "organization": schema.StringAttribute{ - Optional: true, - Computed: true, + Optional: true, + Computed: true, + Description: "Organization identifier", + MarkdownDescription: "Organization identifier", }, "project": schema.StringAttribute{ - Optional: true, - Computed: true, + Optional: true, + Computed: true, + Description: "Project identifier", + MarkdownDescription: "Project identifier", }, "region": schema.StringAttribute{ Optional: true,