-
Notifications
You must be signed in to change notification settings - Fork 6
/
variables.tf
43 lines (35 loc) · 983 Bytes
/
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
variable "domain" {
type = "string"
description = "Domain purchased for this campaign, e.g. phishdomain.com"
}
variable "hostname" {
type = "string"
description = "Hostname of the GoPhish Server / Landing Site, e.g. 'landing' for landing.domain.com"
}
variable "sendgrid_server" {
type = "string"
description = "SendGrid SMTP Server Address"
default = "smtp.sendgrid.com"
}
variable "sendgrid_user" {
type = "string"
description = "Username for SendGrid - usually starts with azure_..."
}
variable "sendgrid_pass" {
type = "string"
description = "Password for SendGrid, specified during account creation"
}
variable "customer" {
type = "string"
description = "Customer for which this campaign is being run (spaces not allowed)"
}
variable "support_email" {
type = "string"
description = "Email address used for LetsEncrypt cert registration"
}
variable "azure_client_id" {
type = "string"
}
variable "azure_client_secret" {
type = "string"
}