You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-`acl` (Attributes) (Enterprise) Access control list for the template. (see [below for nested schema](#nestedatt--acl))
50
51
-`active_user_count` (Number) Number of active users using the template.
51
52
-`active_version_id` (String) ID of the active version of the template.
52
53
-`activity_bump_ms` (Number) Duration to bump the deadline of a workspace when it receives activity.
53
54
-`allow_user_autostart` (Boolean) Whether users can autostart workspaces created from the template.
54
55
-`allow_user_autostop` (Boolean) Whether users can customize autostop behavior for workspaces created from the template.
55
56
-`allow_user_cancel_workspace_jobs` (Boolean) Whether users can cancel jobs in workspaces created from the template.
57
+
-`auto_start_permitted_days_of_week` (Set of String) List of days of the week in which autostart is allowed to happen, for all workspaces created from this template. Defaults to all days. If no days are specified, autostart is not allowed.
58
+
-`auto_stop_requirement` (Attributes) The auto-stop requirement for all workspaces created from this template. (see [below for nested schema](#nestedatt--auto_stop_requirement))
56
59
-`created_at` (Number) Unix timestamp of when the template was created.
57
60
-`created_by_user_id` (String) ID of the user who created the template.
58
61
-`default_ttl_ms` (Number) Default time-to-live for workspaces created from the template.
-`display_name` (String) Display name of the template.
63
66
-`failure_ttl_ms` (Number) Automatic cleanup TTL for failed workspace builds.
64
67
-`icon` (String) URL of the template's icon.
68
+
-`max_port_share_level` (String) The maximum port share level for workspaces created from the template.
65
69
-`require_active_version` (Boolean) Whether workspaces created from the template must be up-to-date on the latest active version.
66
70
-`time_til_dormant_autodelete_ms` (Number) Duration of inactivity after the workspace becomes dormant before a workspace is automatically deleted.
67
71
-`time_til_dormant_ms` (Number) Duration of inactivity before a workspace is considered dormant.
68
72
-`updated_at` (Number) Unix timestamp of when the template was last updated.
73
+
74
+
<aid="nestedatt--acl"></a>
75
+
### Nested Schema for `acl`
76
+
77
+
Read-Only:
78
+
79
+
-`groups` (Attributes Set) (see [below for nested schema](#nestedatt--acl--groups))
80
+
-`users` (Attributes Set) (see [below for nested schema](#nestedatt--acl--users))
81
+
82
+
<aid="nestedatt--acl--groups"></a>
83
+
### Nested Schema for `acl.groups`
84
+
85
+
Read-Only:
86
+
87
+
-`id` (String)
88
+
-`role` (String)
89
+
90
+
91
+
<aid="nestedatt--acl--users"></a>
92
+
### Nested Schema for `acl.users`
93
+
94
+
Read-Only:
95
+
96
+
-`id` (String)
97
+
-`role` (String)
98
+
99
+
100
+
101
+
<aid="nestedatt--auto_stop_requirement"></a>
102
+
### Nested Schema for `auto_stop_requirement`
103
+
104
+
Optional:
105
+
106
+
-`weeks` (Number) Weeks is the number of weeks between required restarts. Weeks are synced across all workspaces (and Coder deployments) using modulo math on a hardcoded epoch week of January 2nd, 2023 (the first Monday of 2023). Values of 0 or 1 indicate weekly restarts. Values of 2 indicate fortnightly restarts, etc.
107
+
108
+
Read-Only:
109
+
110
+
-`days_of_week` (Set of String) List of days of the week on which restarts are required. Restarts happen within the user's quiet hours (in their configured timezone). If no days are specified, restarts are not required.
-`auto_start_permitted_days_of_week` (Set of String) (Enterprise) List of days of the week in which autostart is allowed to happen, for all workspaces created from this template. Defaults to all days. If no days are specified, autostart is not allowed.
70
70
-`auto_stop_requirement` (Attributes) (Enterprise) The auto-stop requirement for all workspaces created from this template. (see [below for nested schema](#nestedatt--auto_stop_requirement))
71
71
-`default_ttl_ms` (Number) The default time-to-live for all workspaces created from this template, in milliseconds.
72
-
-`deprecation_message` (String) If set, the template will be marked as deprecated with the provided message and users will be blocked from creating new workspaces from it.
72
+
-`deprecation_message` (String) If set, the template will be marked as deprecated with the provided message and users will be blocked from creating new workspaces from it. Does nothing if set when the resource is created.
73
73
-`description` (String) A description of the template.
74
74
-`display_name` (String) The display name of the template. Defaults to the template name.
75
75
-`failure_ttl_ms` (Number) (Enterprise) The max lifetime before Coder stops all resources for failed workspaces created from this template, in milliseconds.
MarkdownDescription: "The auto-stop requirement for all workspaces created from this template.",
140
+
Computed: true,
141
+
Attributes: map[string]schema.Attribute{
142
+
"days_of_week": schema.SetAttribute{
143
+
MarkdownDescription: "List of days of the week on which restarts are required. Restarts happen within the user's quiet hours (in their configured timezone). If no days are specified, restarts are not required.",
144
+
Computed: true,
145
+
ElementType: types.StringType,
146
+
},
147
+
"weeks": schema.Int64Attribute{
148
+
MarkdownDescription: "Weeks is the number of weeks between required restarts. Weeks are synced across all workspaces (and Coder deployments) using modulo math on a hardcoded epoch week of January 2nd, 2023 (the first Monday of 2023). Values of 0 or 1 indicate weekly restarts. Values of 2 indicate fortnightly restarts, etc.",
MarkdownDescription: "List of days of the week in which autostart is allowed to happen, for all workspaces created from this template. Defaults to all days. If no days are specified, autostart is not allowed.",
156
+
Computed: true,
157
+
ElementType: types.StringType,
158
+
},
137
159
"allow_user_autostart": schema.BoolAttribute{
138
160
MarkdownDescription: "Whether users can autostart workspaces created from the template.",
MarkdownDescription: "If set, the template will be marked as deprecated with the provided message and users will be blocked from creating new workspaces from it.",
364
+
MarkdownDescription: "If set, the template will be marked as deprecated with the provided message and users will be blocked from creating new workspaces from it. Does nothing if set when the resource is created.",
0 commit comments