-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
92 lines (77 loc) · 1.86 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
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 = "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 = string
default = "tls"
}
variable "mail_from_address" {
description = "Mail from address"
type = string
}
variable "admin_email" {
description = "Email address of initial admin account"
type = string
}
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"
}