-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
62 lines (52 loc) · 1.46 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
variable "aws_region" {
description = "AWS region to deploy resources into"
type = string
default = "us-east-1"
}
variable "ssh_key_name" {
description = "Name of the SSH key pair to use for EC2 instance"
type = string
default = "email_snap"
}
variable "ssh_key_path" {
description = "Path to the SSH public key file"
type = string
default = "../ssh/email_snap.pub"
}
variable "instance_type" {
description = "EC2 instance type"
type = string
default = "t3.small"
}
variable "domain" {
description = "The domain to verify in SES (emailsnap.app)"
type = string
default = "emailsnap.app"
}
variable "s3_bucket_name" {
description = "The S3 bucket to store received emails and attachments"
type = string
default = "emailsnap-app-emails" # Make sure the name is globally unique
}
variable "web_app_domain" {
description = "Web App Work Domain"
type = string
default = "emailsnap.app"
}
variable "web_app_domain_alternative" {
description = "Web App Work Domain"
type = string
default = "*.emailsnap.app"
}
variable "db_name" {
description = "The name of the database to create"
default = "zDYOpfERcL"
}
variable "db_username" {
description = "The database admin username"
default = "HwzMvgQOFX"
}
variable "db_password" {
description = "The database admin password"
default = "fbZmbGsprt" # Replace with a AWS Secrets Manager
}