Skip to content

Commit f98b55a

Browse files
author
Phil Brocker
committed
update docs
1 parent d9fe1a6 commit f98b55a

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

docs/resources/workspace_group.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,10 @@ resource "singlestoredb_workspace_group" "this" {
2727
expires_at = "2222-01-01T00:00:00Z"
2828
region_id = data.singlestoredb_regions.all.regions.0.id // Prefer specifying the explicit region ID in production environments as the list of regions may vary.
2929
admin_password = "fooBAR12$"
30+
update_window = {
31+
day = 6
32+
hour = 17
33+
}
3034
}
3135
```
3236

@@ -48,5 +52,14 @@ resource "singlestoredb_workspace_group" "this" {
4852

4953
- `created_at` (String) The timestamp when the workspace was created.
5054
- `id` (String) The unique identifier of the workspace group.
55+
- `update_window` (Attributes) Details of the scheduled update window for the workspace group. This is the time period during which any updates to the workspace group will occur. (see [below for nested schema](#nestedatt--update_window))
56+
57+
<a id="nestedatt--update_window"></a>
58+
### Nested Schema for `update_window`
59+
60+
Read-Only:
61+
62+
- `day` (Number) The day of the week (0-6), where 0 is Sunday and 6 is Saturday, when the update window is scheduled.
63+
- `hour` (Number) The hour of the day, in 24-hour UTC format (0-23), when the update window starts.
5164

5265

0 commit comments

Comments
 (0)