33 lines
523 B
HCL
33 lines
523 B
HCL
## =================================
|
|
## Bucket
|
|
## =================================
|
|
|
|
variable bucket_enable {
|
|
type = bool
|
|
default = false
|
|
}
|
|
|
|
variable bucket_compartment {
|
|
type = string
|
|
default = ""
|
|
}
|
|
|
|
variable bucket_name {
|
|
type = string
|
|
default = ""
|
|
}
|
|
|
|
variable bucket_access_type {
|
|
type = string
|
|
default = ""
|
|
}
|
|
|
|
variable bucket_storage_tier {
|
|
type = string
|
|
default = ""
|
|
}
|
|
|
|
variable bucket_versioning {
|
|
type = string
|
|
default = ""
|
|
}
|