-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathvariables.tf
88 lines (71 loc) · 1.89 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
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
variable "name" {
description = "Top-level name of configuration: lowercase, dash-separated"
}
variable "heroku_email" {}
variable "heroku_api_key" {}
variable "heroku_enterprise_team" {}
variable "aws_access_key" {}
variable "aws_secret_key" {}
variable "aws_region" {
default = "us-east-1"
}
variable "aws_to_heroku_common_region" {
default = {
"eu-west-1" = "eu"
"us-east-1" = "us"
}
}
variable "aws_to_heroku_private_region" {
default = {
"eu-west-1" = "dublin"
"eu-central-1" = "frankfurt"
"us-west-2" = "oregon"
"ap-southeast-2" = "sydney"
"ap-northeast-1" = "tokyo"
"us-east-1" = "virginia"
}
}
# Heroku app: "Health"
variable "health_app_slug_file_path" {
description = "Heroku slug archive to release"
default = "health-app/heroku-slug.tgz"
}
# AWS ECS/Docker app: "Health Checker"
variable "health_checker_app_image" {
description = "Docker image to run in the ECS cluster"
default = "mars/peer-health-checker:latest"
}
variable "health_checker_app_port" {
description = "Port exposed by the docker image to redirect traffic to"
default = 80
}
variable "health_checker_app_count" {
description = "Number of docker containers to run"
default = 1
}
# Redshift
variable "redshift_username" {
description = "redshift username"
default = "admin"
}
variable "redshift_password" {
description = "redshift password"
default = "Supercoolstuffalright3456!"
}
variable "redshift_dbname" {
description = "redshift database name"
default = "mydb"
}
#Redshift Client Heroku App
variable "redshift_client_app_slug_file_path" {
description = "Heroku slug archive to release"
default = "slugs/redshift-client.tgz"
}
variable "redshift_client_app_count" {
description = "Heroku dyno quantity"
default = 1
}
variable "redshift_client_app_size" {
description = "Heroku dyno size"
default = "Private-S"
}