alicloud_oss_bucket_style

更新时间:

Provides a OSS Bucket Style resource.

Image styles that contain single or multiple image processing parameters.

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

-> NOTE: Available since v1.245.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}"
}

resource "alicloud_oss_bucket_style" "default" {
  bucket     = alicloud_oss_bucket.CreateBucket.id
  style_name = "style-933"
  content    = "image/resize,p_75,w_75"
  category   = "document"
}

Argument Reference

The following arguments are supported:

  • bucket - (Required, ForceNew) Storage space to which the picture style belongs
  • category - (Optional, Computed) Style category, valid values: image, document, video.
  • content - (Required) The Image style content can contain single or multiple image processing parameters.
  • style_name - (Required, ForceNew) Image Style Name

Attributes Reference

The following attributes are exported:

  • id - The ID of the resource supplied above.The value is formulated as <bucket>:<style_name>.
  • create_time - Image Style Creation Time

Timeouts

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

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

Import

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

$ terraform import alicloud_oss_bucket_style.example <bucket>:<style_name>