Provides a ADB cluster backup policy resource and used to configure cluster backup policy.
variable "name" {
default = "terraform-example"
}
data "alicloud_adb_zones" "default" {
}
data "alicloud_vpcs" "default" {
name_regex = "^default-NODELETING$"
}
data "alicloud_vswitches" "default" {
vpc_id = data.alicloud_vpcs.default.ids.0
zone_id = data.alicloud_adb_zones.default.ids.0
}
locals {
vswitch_id = data.alicloud_vswitches.default.ids.0
}
resource "alicloud_adb_db_cluster" "cluster" {
db_cluster_category = "MixedStorage"
mode = "flexible"
compute_resource = "8Core32GB"
vswitch_id = local.vswitch_id
description = var.name
}
resource "alicloud_adb_backup_policy" "default" {
db_cluster_id = alicloud_adb_db_cluster.cluster.id
preferred_backup_period = ["Tuesday", "Wednesday"]
preferred_backup_time = "10:00Z-11:00Z"
}
The alicloud_adb_backup_policy resource allows you to manage your adb cluster policy, but Terraform cannot destroy it. Removing this resource from your configuration will remove it from your statefile and management, but will not destroy the cluster policy. You can resume managing the cluster via the adb Console.
The following arguments are supported:
db_cluster_id
- (Required, ForceNew) The Id of cluster that can run database.preferred_backup_period
- (Required) ADB Cluster backup period. Valid values: [Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday].preferred_backup_time
- (Required) ADB Cluster backup time, in the format of HH:mmZ- HH:mmZ. Time setting interval is one hour. China time is 8 hours behind it.The following attributes are exported:
id
- The current backup policy resource ID. It is same as 'db_cluster_id'.backup_retention_period
- Cluster backup retention days, Fixed for 7 days, not modified.ADB backup policy can be imported using the id or cluster id, e.g.
$ terraform import alicloud_adb_backup_policy.example "am-12345678"