-
Notifications
You must be signed in to change notification settings - Fork 1
/
vars.tf
94 lines (77 loc) · 2.21 KB
/
vars.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
variable "aws_acm_certificate_domain" {
type = string
description = "domain name to find ssl certificate"
}
variable "aws_region" {
type = string
description = "AWS region"
}
variable "aws_route53_zone_name" {
type = string
description = "name to find aws route53 zone, e.g. mentorpal.org."
}
variable "eb_env_name" {
type = string
description = "Solution name, e.g. 'app' or 'cluster'"
default = "mentorpal"
}
variable "eb_env_namespace" {
type = string
description = "Namespace, which could be your organization name, e.g. 'eg' or 'cp'"
}
variable "eb_env_tags" {
type = map(string)
default = {}
description = "Additional tags (e.g. `map('BusinessUnit`,`XYZ`)"
}
variable "site_domain_name" {
type = string
description = "the public domain name for this site, e.g. dev.mentorpal.org"
}
variable "static_site_alias" {
type = string
description = "alias for static site that will serve video etc. By default, generates one based on site_domain_name"
default = ""
}
variable "static_cors_allowed_origins" {
type = list(string)
description = "list of cors allowed origins for static"
default = []
}
variable "enable_cdn_firewall_logging" {
type = bool
default = false
description = "enable cdn firewall logging (s3 bucket for storage, and a kinesis stream for delivery)"
}
variable "enable_api_firewall_logging" {
type = bool
default = false
description = "enable api firewall logging (s3 bucket for storage, and a kinesis stream for delivery)"
}
variable "enable_content_backup" {
type = bool
description = "if true configures aws backup service to continuously backup uploads"
default = true
}
variable "enable_alarms" {
type = bool
description = "Not used atm, reserved for future alerts"
default = false
}
variable "alert_topic_arn" {
type = string
description = "sns topic arn used for alerts"
default = ""
}
variable "secret_header_name" {
type = string
default = ""
}
variable "secret_header_value" {
type = string
default = ""
}
variable "allowed_origin" {
type = string
default = ""
}