-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
97 lines (77 loc) · 1.36 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
variable "bucket_regional_domain_name" {
type = string
}
variable "cf_access_identity_path" {
type = string
default = ""
}
variable "enabled" {
type = bool
default = true
}
variable "ipv6_enabled" {
type = bool
default = false
}
variable "allowed_methods" {
type = list(string)
default = ["DELETE", "GET", "HEAD", "OPTIONS", "PATCH", "POST", "PUT"]
}
variable "cached_methods" {
type = list(string)
default = ["GET", "HEAD"]
}
variable "viewer_protocol_policy" {
type = string
default = "allow-all"
}
variable "min_ttl" {
type = number
default = 0
}
variable "default_ttl" {
type = number
default = 3600
}
variable "max_ttl" {
type = number
default = 86400
}
variable "compress" {
type = bool
default = true
}
variable "price_class" {
type = string
default = "PriceClass_All"
}
variable "restrict_type" {
type = string
default = "none"
}
variable "restrict_locations" {
type = list(string)
default = []
}
variable "cf_default_cert" {
type = bool
default = true
}
variable "acm_cert_arn" {
type = string
}
variable "aliases" {
type = list(string)
}
variable "ssl_method" {
type = string
default = "sni-only"
}
variable "ssl_protocol_version" {
type = string
default = "TLSv1.2_2019"
}
variable "environment" {
type = string
default = "production"
}