-
Notifications
You must be signed in to change notification settings - Fork 11
/
env.init.vars.tf
124 lines (73 loc) · 1.93 KB
/
env.init.vars.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
# environment-specific variables
variable "aws_account_id" {}
variable "aws_profile" {}
variable "environment" {}
variable "system_name" {}
provider "aws" {
profile = "${var.aws_profile}"
region = "${var.aws_region}"
}
# datadog
variable "datadog_integration_id" {}
# EC2: VPC
variable "cidr" {}
variable "public_ranges" {
type = "list"
}
variable "private_ranges" {
type = "list"
}
# Route53
variable "route53_public_zone_id" {}
variable "domain" {}
variable "acm_arn" {}
# EC2
variable "base_ami" {}
variable "key_name" {}
# datomic
variable "datomic_instance_count" {}
variable "datomic_instance_type" {}
variable "transactor_memory_index_max" {}
variable "transactor_memory_index_threshold" {}
variable "transactor_object_cache_max" {}
variable "transactor_xmx" {}
variable "dynamo_read_capacity" {}
variable "dynamo_write_capacity" {}
# backup
variable "backup_instance_type" {}
variable "backup_instance_count" {}
# memcached
variable "memcached_instance_type" {}
# redis
variable "redis_instance_type" {}
# bastion
variable "bastion_instance_type" {}
# c2
variable "c2_instance_type" {}
variable "c2_min_size" {}
variable "c2_desired_capacity" {}
variable "c2_max_size" {}
variable "c2_xmx" {}
variable "c2_memory_index_max" {}
variable "c2_object_cache_max" {}
# chat
variable "chat_instance_type" {}
variable "chat_min_size" {}
variable "chat_desired_capacity" {}
variable "chat_max_size" {}
variable "chat_xmx" {}
variable "chat_memory_index_max" {}
variable "chat_object_cache_max" {}
# highstorm
variable "highstorm_instance_type" {}
variable "highstorm_min_size" {}
variable "highstorm_desired_capacity" {}
variable "highstorm_max_size" {}
variable "highstorm_xmx" {}
variable "highstorm_memory_index_max" {}
variable "highstorm_object_cache_max" {}
# zookeeper
variable "zookeeper_instance_type" {}
variable "zookeeper_min_size" {}
variable "zookeeper_desired_capacity" {}
variable "zookeeper_max_size" {}