-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
64 lines (54 loc) · 1.38 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
variable "base_path" {
type = string
default = "redirect"
}
variable "base_domain" {
type = string
description = "The domain which will have its zone created in Route53."
}
variable "project_subdomain" {
type = string
description = "Subdomain of that the project should be hosted on. Prepended with a period to `base_domain` to create the full domain."
}
variable "protocol" {
type = string
default = "https"
}
variable "sns_sub_proto" {
type = string
default = "email-json"
}
variable "sns_sub_endpoint" {
type = string
}
variable "error_destination" {
type = string
}
variable "project_name" {
type = string
default = "redirects"
}
variable "environment" {
type = string
description = "A label to distinguish between multiple deployments of the same project."
default = "main"
}
variable "class" {
type = string
description = "Identifies the type of deploymnet. (eg: prod, dev, etc...)."
default = "prod"
}
variable "use_base_default_tags" {
type = bool
default = true
description = "Use the default_tags assigned by the project."
}
variable "custom_default_tags" {
type = map(string)
description = "Additional default_tags that should be included."
default = {}
}
variable "region" {
type = string
description = "The AWS region that resources should be deployed to."
}