Provides a OSS Bucket Logging resource. After you enable and configure logging for a bucket, Object Storage Service (OSS) generates log objects based on a predefined naming convention. This way, access logs are generated and stored in the specified bucket on an hourly basis.
For information about OSS Bucket Logging and how to use it, see What is Bucket Logging.
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 = [
logging,
]
}
}
resource "alicloud_oss_bucket_logging" "default" {
bucket = alicloud_oss_bucket.CreateBucket.bucket
target_bucket = alicloud_oss_bucket.CreateBucket.bucket
target_prefix = "log/"
}
The following arguments are supported:
bucket
- (Required, ForceNew) The name of the bucket.target_bucket
- (Required) The bucket that stores access logs.target_prefix
- (Optional) The prefix of the saved log objects. This element can be left empty.The following attributes are exported:
id
- The ID of the resource supplied above.The timeouts
block allows you to specify timeouts for certain actions:
create
- (Defaults to 5 mins) Used when create the Bucket Logging.delete
- (Defaults to 5 mins) Used when delete the Bucket Logging.update
- (Defaults to 5 mins) Used when update the Bucket Logging.OSS Bucket Logging can be imported using the id, e.g.
$ terraform import alicloud_oss_bucket_logging.example <id>