alicloud_snapshot
更新时间:
-> DEPRECATED: This resource has been renamed to alicloud_ecs_snapshot from version 1.120.0.
Provides an ECS snapshot resource.
For information about snapshot and how to use it, see Snapshot.
Example Usage
resource "alicloud_snapshot" "snapshot" {
disk_id = alicloud_disk_attachment.instance-attachment.disk_id
name = "test-snapshot"
description = "this snapshot is created for testing"
tags = {
version = "1.2"
}
}
Argument Reference
The following arguments are supported:
disk_id
- (Required, ForceNew) The source disk ID.name
- (Optional, ForceNew) The name of the snapshot to be created. The name must be 2 to 128 characters in length. It must start with a letter and cannot start with http:// or https://. It can contain letters, digits, colons (:), underscores (_), and hyphens (-). It cannot start with auto, because snapshot names starting with auto are recognized as automatic snapshots.resource_group_id
- (Optional, ForceNew, Available in 1.94.0+) The ID of the resource group.description
- (Optional, ForceNew) Description of the snapshot. This description can have a string of 2 to 256 characters, It cannot begin with http:// or https://. Default value is null.tags
- (Optional) A mapping of tags to assign to the resource.
Timeouts
-> NOTE: Available in 1.51.0+.
The timeouts
block allows you to specify timeouts for certain actions:
create
- (Defaults to 2 mins) Used when creating the snapshot (until it reaches the initialSnapshotCreatingAccomplished
status).delete
- (Defaults to 2 mins) Used when terminating the snapshot.
Attributes Reference
The following attributes are exported:
id
- The snapshot ID.
Import
Snapshot can be imported using the id, e.g.
$ terraform import alicloud_snapshot.snapshot s-abc1234567890000
文档内容是否对您有帮助?