23 lines
423 B
HCL
23 lines
423 B
HCL
variable "name" {
|
|
description = "OSS bucket name"
|
|
type = string
|
|
}
|
|
|
|
variable "acl" {
|
|
description = "Bucket ACL"
|
|
type = string
|
|
default = "private"
|
|
}
|
|
|
|
variable "enable_versioning" {
|
|
description = "Enable bucket versioning"
|
|
type = bool
|
|
default = true
|
|
}
|
|
|
|
variable "sse_algorithm" {
|
|
description = "Server-side encryption algorithm"
|
|
type = string
|
|
default = "AES256"
|
|
}
|