diff --git a/docs/data-sources/daemon.md b/docs/data-sources/daemon.md index 624baf2..76e1c3f 100644 --- a/docs/data-sources/daemon.md +++ b/docs/data-sources/daemon.md @@ -17,19 +17,19 @@ Daemon data source ### Required -- `server_id` (Number) +- `server_id` (Number) The ID of the server. ### Read-Only -- `command` (String) +- `command` (String) Undocumented parameter, example: `COMMAND`. - `created_at` (String) -- `directory` (String) +- `directory` (String) Undocumented parameter, example: `/home/forge/foo.com`. - `id` (Number) The ID of this resource. - `processes` (Number) - `startsecs` (Number) - `status` (String) - `stopsignal` (String) - `stopwaitsecs` (Number) -- `user` (String) +- `user` (String) Undocumented parameter, example: `root`. diff --git a/internal/provider/daemon_data_source.go b/internal/provider/daemon_data_source.go index 0434a44..a6cff19 100644 --- a/internal/provider/daemon_data_source.go +++ b/internal/provider/daemon_data_source.go @@ -52,15 +52,15 @@ func (d *DaemonDataSource) Schema(ctx context.Context, req datasource.SchemaRequ Required: true, }, "command": schema.StringAttribute{ - MarkdownDescription: "", + MarkdownDescription: "Undocumented parameter, example: `COMMAND`.", Computed: true, }, "user": schema.StringAttribute{ - MarkdownDescription: "", + MarkdownDescription: "Undocumented parameter, example: `root`.", Computed: true, }, "directory": schema.StringAttribute{ - MarkdownDescription: "", + MarkdownDescription: "Undocumented parameter, example: `/home/forge/foo.com`.", Computed: true, }, "processes": schema.Int64Attribute{ @@ -88,7 +88,7 @@ func (d *DaemonDataSource) Schema(ctx context.Context, req datasource.SchemaRequ Computed: true, }, "server_id": schema.Int64Attribute{ - MarkdownDescription: "", + MarkdownDescription: "The ID of the server.", Required: true, }, },