-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
47 lines (39 loc) · 1.34 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
variable "from_domain_name" {
type = string
description = "domain name to redirect from"
}
variable "target_domain_name" {
type = string
description = "domain name to redirect to"
}
variable "hosted_zone_id" {
type = string
description = "Route 53 hosted zone id for the domain to redirect"
}
variable "logs_transition_ia" {
description = "How long to wait before transitioning log files into S3-IA."
default = 30
}
variable "logs_transition_glacier" {
description = "How long to wait before transitioning log files into Glacier."
default = 60
}
variable "logs_expiration" {
description = "How long to wait before deleting old log files."
default = 365
}
variable "force_destroy" {
description = "A boolean that indicates all objects should be deleted from the bucket so that the bucket can be destroyed without error. These objects are not recoverable."
default = "true"
}
variable "cache_ttl" {
description = "Default TTL to give objects requested from S3 in CloudFront for caching."
default = 3600
}
// 100: Limit to only Europe, USA, and Canada endpoints.
// 200: + Hong Kong, Philippines, South Korea, Singapore, & Taiwan.
// All: + South America, and Australa.
variable "price_class" {
description = "Which price_class to enable in CloudFront."
default = "PriceClass_All"
}