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
Description: "Configuration block that defines autoscaling behavior for prebuilds. Use this to automatically adjust the number of prebuild instances based on a schedule.",
141
+
Optional: true,
142
+
MaxItems: 1,
142
143
Elem: &schema.Resource{
143
144
Schema: map[string]*schema.Schema{
144
145
"timezone": {
145
-
Type: schema.TypeString,
146
-
Required: true,
146
+
Type: schema.TypeString,
147
+
Description: "The timezone to use for the autoscaling schedule (e.g., \"UTC\", \"America/New_York\").",
Description: "One or more schedule blocks that define when to scale the number of prebuild instances.",
163
+
Required: true,
164
+
MinItems: 1,
162
165
Elem: &schema.Resource{
163
166
Schema: map[string]*schema.Schema{
164
167
"cron": {
165
-
Type: schema.TypeString,
166
-
Required: true,
168
+
Type: schema.TypeString,
169
+
Description: "A cron expression that defines when this schedule should be active. The cron expression must be in the format \"* HOUR * * DAY-OF-WEEK\" where HOUR is 0-23 and DAY-OF-WEEK is 0-6 (Sunday-Saturday). The minute, day-of-month, and month fields must be \"*\".",
0 commit comments