文档

alicloud_oss_bucket_transfer_acceleration

更新时间:
一键部署

Provides a OSS Bucket Transfer Acceleration resource. Transfer acceleration configuration of a bucket.

For information about OSS Bucket Transfer Acceleration and how to use it, see What is Bucket Transfer Acceleration.

-> NOTE: Available since v1.224.0.

Example Usage

Basic Usage


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

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

resource "random_integer" "default" {
  min = 10000
  max = 99999
}


resource "alicloud_oss_bucket" "CreateBucket" {
  storage_class = "Standard"
  bucket        = "${var.name}-${random_integer.default.result}"
  lifecycle {
    ignore_changes = [
      transfer_acceleration,
    ]
  }
}


resource "alicloud_oss_bucket_transfer_acceleration" "default" {
  bucket  = alicloud_oss_bucket.CreateBucket.bucket
  enabled = true
}

Deleting alicloud_oss_bucket_transfer_acceleration or removing it from your configuration

Terraform cannot destroy resource alicloud_oss_bucket_transfer_acceleration. Terraform will remove this resource from the state file, however resources may remain.

Argument Reference

The following arguments are supported:

  • bucket - (Required, ForceNew) The name of the Bucket.
  • enabled - (Optional) Specifies whether to enable transfer acceleration for the bucket. Valid values: true: transfer acceleration for the bucket is enabled. false: transfer acceleration for the bucket is disabled.

Attributes Reference

The following attributes are exported:

  • id - The ID of the resource supplied above.

Timeouts

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

  • create - (Defaults to 5 mins) Used when create the Bucket Transfer Acceleration.
  • update - (Defaults to 5 mins) Used when update the Bucket Transfer Acceleration.

Import

OSS Bucket Transfer Acceleration can be imported using the id, e.g.

$ terraform import alicloud_oss_bucket_transfer_acceleration.example <id>