文档

alicloud_ens_image

更新时间:
一键部署

Provides a ENS Image resource.

For information about ENS Image and how to use it, see What is Image.

-> NOTE: Available since v1.216.0.

Example Usage

Basic Usage

variable "name" {
  default = "terraform-example"
}

provider "alicloud" {
  region = "cn-hangzhou"
}

resource "alicloud_ens_instance" "default" {
  system_disk {
    size = "20"
  }
  schedule_area_level        = "Region"
  image_id                   = "centos_6_08_64_20G_alibase_20171208"
  payment_type               = "PayAsYouGo"
  password                   = "12345678ABCabc"
  amount                     = "1"
  internet_max_bandwidth_out = "10"
  public_ip_identification   = true
  ens_region_id              = "cn-chenzhou-telecom_unicom_cmcc"
  period_unit                = "Month"
  instance_type              = "ens.sn1.stiny"
  status                     = "Stopped"
}


resource "alicloud_ens_image" "default" {
  image_name = var.name

  instance_id               = alicloud_ens_instance.default.id
  delete_after_image_upload = "false"
}

Argument Reference

The following arguments are supported:

  • delete_after_image_upload - (Optional) Whether the instance is automatically released after the image is packaged and uploaded successfully, only the build machine is supported. Optional values: true: When the instance is released, the image is released together with the instance. false: When the instance is released, the image is retained and is not released together with the instance. Empty means false by default.
  • image_name - (Required) Image Name.
  • instance_id - (Optional, ForceNew) The ID of the instance corresponding to the image.

Attributes Reference

The following attributes are exported:

  • id - The ID of the resource supplied above.
  • create_time - Image creation time.
  • status - Mirror Status Optional values: Creating: Creating Packing: Packing Uploading: Uploading Pack_failed: Packing failed Upload_failed: Upload failed Available: Only images in the Available state can be used and operated. Unavailable: Not available Copying: Copying.

Timeouts

The timeouts block allows you to specify timeouts for certain actions:

  • create - (Defaults to 5 mins) Used when create the Image.
  • delete - (Defaults to 5 mins) Used when delete the Image.
  • update - (Defaults to 5 mins) Used when update the Image.

Import

ENS Image can be imported using the id, e.g.

$ terraform import alicloud_ens_image.example <id>

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