-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
98 lines (82 loc) · 1.99 KB
/
variables.tf
File metadata and controls
98 lines (82 loc) · 1.99 KB
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
95
96
97
98
variable "docker_tag" {
description = "Docker image tag"
type = string
default = "1.2.14"
}
variable "project_slug" {
description = "Project slug"
type = string
}
variable "hostname" {
description = "Domain for 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 = "North Europe"
}
variable "mail_host" {
description = "SMTP host"
type = string
default = "smtp.sendgrid.net"
}
variable "mail_port" {
description = "SMTP port"
type = string
default = 587
}
variable "mail_username" {
description = "SMTP username"
type = string
default = "apikey"
}
variable "mail_password" {
description = "SMTP password"
type = string
sensitive = true
}
variable "mail_encryption" {
description = "SMTP encryption"
type = bool
default = true
}
variable "mail_from_address" {
description = "Mail from address"
type = string
}
variable "admin_email" {
description = "Email address of initial admin account"
type = string
}
variable "worker_timeout" {
description = "The maximum time in seconds that a worker can run"
type = number
default = 1200
}
variable "mailchimp_key" {
description = "Enables support for mailchimp plugin"
type = string
default = null
}
variable "database_az_enabled" {
description = "Specifies if there's a preference for the Availability Zone in which the PostgreSQL Flexible Server should be located"
type = bool
default = true
}
variable "database_az" {
description = "Specifies the Availability Zone in which the PostgreSQL Flexible Server should be located"
type = string
default = "2"
}