terraform-provider-stackitp.../docs/data-sources/server_backup_schedule.md
João Palet 5b617e0676
Make server backup schedule resources beta (#434)
* Make server backup schedule resources beta

* Adjust guide
2024-06-26 14:02:50 +01:00

1.7 KiB

page_title subcategory description
stackit_server_backup_schedule Data Source - stackit Server backup schedule datasource schema. Must have a region specified in the provider configuration. !> This resource is in beta and may be subject to breaking changes in the future. Use with caution.

stackit_server_backup_schedule (Data Source)

Server backup schedule datasource schema. Must have a region specified in the provider configuration.

!> This resource is in beta and may be subject to breaking changes in the future. Use with caution.

Example Usage

data "stackit_server_backup_schedule" "example" {
  project_id         = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
  server_id          = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
  backup_schedule_id = xxxxx
}

Schema

Required

  • backup_schedule_id (Number) Backup schedule ID.
  • project_id (String) STACKIT Project ID to which the server is associated.
  • server_id (String) Server ID for the backup schedule.

Read-Only

  • backup_properties (Attributes) Backup schedule details for the backups. (see below for nested schema)
  • enabled (Boolean) Is the backup schedule enabled or disabled.
  • id (String) Terraform's internal resource identifier. It is structured as "project_id,server_id,backup_schedule_id".
  • name (String) The schedule name.
  • rrule (String) Backup schedule described in rrule (recurrence rule) format.

Nested Schema for backup_properties

Read-Only:

  • name (String)
  • retention_period (Number)
  • volume_ids (List of String)