feat: region adjustment serverupdate (#742)
This commit is contained in:
parent
435de4c9eb
commit
862db91f84
12 changed files with 196 additions and 76 deletions
|
|
@ -32,10 +32,14 @@ data "stackit_server_update_schedule" "example" {
|
|||
- `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`,`server_id`,`update_schedule_id`".
|
||||
- `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.
|
||||
|
|
|
|||
|
|
@ -30,9 +30,13 @@ data "stackit_server_update_schedules" "example" {
|
|||
- `project_id` (String) STACKIT Project ID (UUID) to which the server is associated.
|
||||
- `server_id` (String) Server ID (UUID) to which the update schedule is associated.
|
||||
|
||||
### Optional
|
||||
|
||||
- `region` (String) The resource region. If not defined, the provider region is used.
|
||||
|
||||
### Read-Only
|
||||
|
||||
- `id` (String) Terraform's internal data source identifier. It is structured as "`project_id`,`server_id`".
|
||||
- `id` (String) Terraform's internal data source identifier. It is structured as "`project_id`,`region`,`server_id`".
|
||||
- `items` (Attributes List) (see [below for nested schema](#nestedatt--items))
|
||||
|
||||
<a id="nestedatt--items"></a>
|
||||
|
|
|
|||
|
|
@ -38,7 +38,11 @@ resource "stackit_server_update_schedule" "example" {
|
|||
- `rrule` (String) Update schedule described in `rrule` (recurrence rule) format.
|
||||
- `server_id` (String) Server ID for the update schedule.
|
||||
|
||||
### Optional
|
||||
|
||||
- `region` (String) The resource region. If not defined, the provider region is used.
|
||||
|
||||
### Read-Only
|
||||
|
||||
- `id` (String) Terraform's internal resource identifier. It is structured as "`project_id`,`server_id`,`update_schedule_id`".
|
||||
- `id` (String) Terraform's internal resource identifier. It is structured as "`project_id`,`region`,`server_id`,`update_schedule_id`".
|
||||
- `update_schedule_id` (Number) Update schedule ID.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue