-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
variables.tf
68 lines (57 loc) · 1.39 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
variable "docker_tag" {
description = "Docker image tag"
type = string
default = "1.9.3"
}
variable "project_slug" {
description = "Project slug"
type = string
}
variable "edition" {
description = "Website Factory edition to deploy"
type = string
default = "ong"
}
variable "hostname" {
description = "Domain for website factory web app"
type = string
default = null
}
variable "env" {
description = "Environment"
type = string
default = "production"
}
variable "debug_mode" {
description = "Enable debug mode"
type = bool
default = false
}
variable "region" {
description = "Region where to deploy resources"
type = string
default = "eu-central-1"
}
variable "availability_zone" {
description = "Availability zone"
type = string
default = "b"
validation {
condition = contains(["a", "b", "c"], var.availability_zone)
error_message = "Allowed values for availability_zone are \"a\", \"b\", or \"c\"."
}
}
variable "ses_domain" {
description = "Domain for AWS SES"
type = string
default = null
}
variable "ses_configuration_set_arn" {
description = "Configuration set arn attached to `ses_domain`"
type = string
default = null
}
variable "admin_email" {
description = "Email address of initial admin account"
type = string
}