--- # generated by https://github.com/hashicorp/terraform-plugin-docs page_title: "stackit_server_update_schedule Data Source - stackit" subcategory: "" description: |- Server update schedule datasource schema. Must have a region specified in the provider configuration. ~> This datasource is in beta and may be subject to breaking changes in the future. Use with caution. See our guide https://registry.terraform.io/providers/stackitcloud/stackit/latest/docs/guides/opting_into_beta_resources for how to opt-in to use beta resources. --- # stackit_server_update_schedule (Data Source) Server update schedule datasource schema. Must have a `region` specified in the provider configuration. ~> This datasource is in beta and may be subject to breaking changes in the future. Use with caution. See our [guide](https://registry.terraform.io/providers/stackitcloud/stackit/latest/docs/guides/opting_into_beta_resources) for how to opt-in to use beta resources. ## Example Usage ```terraform data "stackit_server_update_schedule" "example" { project_id = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" server_id = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" update_schedule_id = xxxxx } ``` ## Schema ### Required - `project_id` (String) STACKIT Project ID to which the server is associated. - `server_id` (String) Server ID for the update schedule. - `update_schedule_id` (Number) Update schedule ID. ### Optional - `region` (String) The resource region. If not defined, the provider region is used. ### Read-Only - `enabled` (Boolean) Is the update schedule enabled or disabled. - `id` (String) Terraform's internal resource identifier. It is structured as "`project_id`,`region`,`server_id`,`update_schedule_id`". - `maintenance_window` (Number) Maintenance window [1..24]. - `name` (String) The schedule name. - `rrule` (String) Update schedule described in `rrule` (recurrence rule) format.