-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathvariables.tf
More file actions
97 lines (82 loc) · 2.24 KB
/
Copy pathvariables.tf
File metadata and controls
97 lines (82 loc) · 2.24 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
variable "coolify_endpoint" {
description = "Coolify API endpoint URL"
type = string
}
variable "coolify_token" {
description = "Coolify API token"
type = string
sensitive = true
}
variable "discord_enabled" {
description = "Whether Discord notifications are enabled (default false for safe demos)"
type = bool
default = false
}
variable "discord_webhook_url" {
description = "Discord incoming webhook URL (placeholder OK for demos)"
type = string
sensitive = true
default = "https://example.com/coolify-acme-discord-webhook"
}
variable "smtp_enabled" {
description = "Whether SMTP delivery is enabled (default false for safe demos)"
type = bool
default = false
}
variable "smtp_host" {
description = "SMTP host"
type = string
default = "smtp.example.com"
}
variable "smtp_port" {
description = "SMTP port"
type = number
default = 587
}
variable "smtp_encryption" {
description = "SMTP encryption: starttls, tls, or none"
type = string
default = "starttls"
}
variable "smtp_from_address" {
description = "SMTP From address"
type = string
default = "alerts@example.com"
}
variable "smtp_from_name" {
description = "SMTP From display name"
type = string
default = "ACME Coolify"
}
variable "smtp_recipients" {
description = "Comma-separated recipient addresses"
type = string
default = "ops@example.com"
}
variable "smtp_username" {
description = "SMTP username"
type = string
default = "smtp-user"
}
variable "smtp_password" {
description = "SMTP password (placeholder)"
type = string
sensitive = true
default = "change-me-in-production"
}
variable "webhook_enabled" {
description = "Whether generic webhook notifications are enabled"
type = bool
default = false
}
variable "webhook_url" {
description = "Generic webhook URL (placeholder OK for demos)"
type = string
sensitive = true
default = "https://example.com/coolify-acme-webhook"
}
variable "discord_status_change" {
description = "Whether Discord status_change notifications are enabled (scenario update step)"
type = bool
default = false
}