-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
57 lines (45 loc) · 1.18 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
## AWS account id
variable "account_id" {
description = "AWS Accout ID"
}
variable "region" {
description = "AWS region"
default = "eu-west-2"
}
variable "availability_zone" {
description = "AWS Subnet Availablity Zone"
default = "eu-west-2a"
}
variable "ecs_key_pair_name" {
description = "EC2 instance key pair name"
default = "ecs-cluster-key"
}
## Twitter account creds
variable "twitter_client_id" {
description = "Twitter account client id used to connect to the Twitter API"
}
variable "twitter_client_secret" {
description = "Twitter account client secret used to connect to the Twitter API"
}
## Postgres URL
variable "postgres_url" {
description = "URL of the Postgres database that the instances can connect to"
}
## Recatpcha secret
variable "recaptcha_secret" {
description = "Server side secret to communicate with my recaptcha account"
}
## SMTP parameters
variable "smtp_host" {
description = "SMTP server URL"
}
variable "smtp_user" {
description = "SMTP auth username"
}
variable "smtp_password" {
description = "SMTP auth password"
}
## Contact email
variable "contact_email" {
description = "To where emails send via the website go"
}