-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
58 lines (50 loc) · 993 Bytes
/
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
variable "domain" {
type = string
}
variable "bucket_name" {
type = string
}
variable "domain_zone_name" {
type = string
default = null
}
variable "create_dns_records" {
type = bool
default = true
}
variable "cors_allowed_origins" {
type = list(string)
default = null
}
variable "cors_allowed_methods_additional" {
type = list(string)
default = []
nullable = false
}
variable "s3_policy_statements_additional" {
type = list(object({
sid = string
principals = list(object({
type = string
identifiers = list(string)
}))
effect = string
actions = list(string)
resources = list(string)
conditions = list(object({
test = string
variable = string
values = list(string)
}))
}))
default = []
nullable = false
}
variable "cloudfront_allowed_bucket_resources" {
type = list(string)
default = ["*"]
}
variable "redirect_to" {
type = string
default = null
}