文档

alicloud_ecs_auto_snapshot_policy_attachment

更新时间:
一键部署

Provides a ECS Auto Snapshot Policy Attachment resource.

For information about ECS Auto Snapshot Policy Attachment and how to use it, see What is Auto Snapshot Policy Attachment.

-> NOTE: Available in v1.122.0+.

Example Usage

Basic Usage

data "alicloud_zones" "example" {
  available_resource_creation = "VSwitch"
}

resource "alicloud_kms_key" "example" {
  description            = "terraform-example"
  pending_window_in_days = "7"
  status                 = "Enabled"
}

resource "alicloud_ecs_auto_snapshot_policy" "example" {
  name            = "terraform-example"
  repeat_weekdays = ["1", "2", "3"]
  retention_days  = -1
  time_points     = ["1", "22", "23"]
}

resource "alicloud_ecs_disk" "example" {
  zone_id     = data.alicloud_zones.example.zones.0.id
  disk_name   = "terraform-example"
  description = "Hello ecs disk."
  category    = "cloud_efficiency"
  size        = "30"
  encrypted   = true
  kms_key_id  = alicloud_kms_key.example.id
  tags = {
    Name = "terraform-example"
  }
}

resource "alicloud_ecs_auto_snapshot_policy_attachment" "example" {
  auto_snapshot_policy_id = alicloud_ecs_auto_snapshot_policy.example.id
  disk_id                 = alicloud_ecs_disk.example.id
}

Argument Reference

The following arguments are supported:

  • auto_snapshot_policy_id - (Required, ForceNew) The auto snapshot policy id.
  • disk_id - (Required, ForceNew) The disk id.

Attributes Reference

The following attributes are exported:

  • id - The resource ID of Auto Snapshot Policy Attachment. The value is formatted <auto_snapshot_policy_id>:<disk_id>.

Import

ECS Auto Snapshot Policy Attachment can be imported using the id, e.g.

$ terraform import alicloud_ecs_auto_snapshot_policy_attachment.example s-abcd12345:d-abcd12345

  • 本页导读 (0)
文档反馈