-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
116 lines (97 loc) · 2.34 KB
/
Copy pathvariables.tf
File metadata and controls
116 lines (97 loc) · 2.34 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
variable "docker_tag" {
description = "Docker image tag"
type = string
default = "1.11.5"
}
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 "enable_acs" {
description = "Enable Azure Communication Service for email sending"
type = bool
default = false
}
variable "acs_data_location" {
description = "Azure Communication Service data location"
type = string
default = "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"
}
variable "sentry_dsn" {
description = "Sentry DSN"
type = string
default = null
}
variable "sentry_environment" {
description = "Sentry environment"
type = string
default = null
}