-
Notifications
You must be signed in to change notification settings - Fork 13
/
variables.tf
119 lines (100 loc) · 2.95 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
variable "name" {
description = "Bucket unique name. It can contain only numbers, letters and dashes"
type = string
}
variable "ownership" {
description = "Object ownership. Valid values: BucketOwnerPreferred, ObjectWriter or BucketOwnerEnforced"
type = string
default = "BucketOwnerPreferred"
}
variable "block_public_acls" {
description = "Whether to block public ACLs"
type = bool
default = true
}
variable "block_public_policy" {
description = "Whether to block public policiy"
type = bool
default = true
}
variable "ignore_public_acls" {
description = "Whether to ignore public ACLs"
type = bool
default = true
}
variable "restrict_public_buckets" {
description = "Whether to restrict public buckets"
type = bool
default = true
}
variable "acl" {
description = "Access Control Lists. It defines which AWS accounts or groups are granted access and the type of access"
type = string
default = "private"
}
variable "policy" {
description = "Bucket policy"
type = object({
json = string
})
default = null
}
variable "force_destroy" {
description = "Whether or not to force destroy the bucket"
type = bool
default = false
}
variable "tags" {
description = "Bucket tags"
type = map(string)
default = {}
}
variable "key_prefix" {
description = "Prefix to put your key(s) inside the bucket. E.g.: logs -> all files will be uploaded under logs/"
type = string
default = ""
}
variable "filepath" {
description = "The local path where the desired files will be uploaded to the bucket"
type = string
default = ""
}
variable "versioning" {
description = "Map containing versioning configuration."
type = object({
expected_bucket_owner = optional(string)
status = optional(string)
mfa = optional(string)
mfa_delete = optional(string)
})
default = {}
validation {
condition = var.versioning.status != null ? contains(["Enabled", "Suspended", "Disabled"], var.versioning.status) : true
error_message = "Allowed values for versioning.status are \"Enabled\", \"Suspended\", \"Disabled\"."
}
}
variable "website" {
description = "Map containing website configuration."
type = map(string)
default = {}
}
variable "logging" {
description = "Map containing logging configuration."
type = map(string)
default = {}
}
variable "notification_topic" {
description = "List of maps containing topic notification configuration."
type = list(map(string))
default = []
}
variable "notification_queue" {
description = "List of maps containing queue notification configuration."
type = list(map(string))
default = []
}
variable "notification_lambda" {
description = "List of maps containing lambda notification configuration."
type = list(map(string))
default = []
}