-
Notifications
You must be signed in to change notification settings - Fork 3
/
variables.tf
79 lines (62 loc) · 1.47 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
variable "project" {
description = "Name of project"
}
variable "environment" {
description = "Name of environment (i.e. dev, test, prod)"
}
variable "region" {
description = "Aws Region"
}
variable "route53_zone_id" {
description = "Route 53 zone id"
}
variable "default_root_path" {
description = "The default root path"
default = ""
}
variable "viewer_protocol_policy" {
description = "The protol policy"
default = "redirect-to-https"
}
variable "viewer_certificate" {
type = map(string)
description = "All certificate parameters"
default = {
cloudfront_default_certificate = true
}
}
variable "alias_domain_suffix" {
description = "Alias domain suffix"
}
variable "ssl_cert_id" {
description = "The IAM SSL certificate id"
default = ""
}
variable "ssl_cert_arn" {
description = "The ACM SSL certificate ARN"
default = ""
}
variable "list_public_register_alias_domain" {
description = "A list of comma-separated list of aliases (no space allowed between domain name and commas)."
type = list(string)
}
variable "brands" {
description = "A list of Frontend brands"
type = list(string)
}
variable "default_ttl" {
description = "The default ttl"
default = 3600
}
variable "max_ttl" {
description = "The max ttl"
default = 86400
}
variable "min_ttl" {
description = "The min ttl"
default = 0
}
variable "cache_compress" {
description = "Compress resources"
default = true
}