-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathvariables.tf
61 lines (52 loc) · 1.04 KB
/
variables.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
variable "region" {
description = "(Deprecated from version 1.5.0) The region used to launch this module resources."
type = string
default = ""
}
variable "logging_isenable" {
description = "(Deprecated from version 1.6.0) The flag of using logging enable container."
type = bool
default = true
}
variable "bucket_name" {
type = string
default = ""
}
variable "acl" {
type = string
default = "private"
}
variable "website" {
type = list(object({
index_document = string
error_document = string
}))
default = []
}
variable "logging" {
type = list(object({
target_bucket = string
target_prefix = string
}))
default = []
}
variable "referer_config" {
type = list(object({
allow_empty = bool
referers = list(string)
}))
default = []
}
variable "lifecycle_rule" {
type = list(object({
id = string
prefix = string
enabled = bool
expiration = list(map(string))
}))
default = []
}
variable "policy" {
type = string
default = ""
}