-
Notifications
You must be signed in to change notification settings - Fork 3
/
main.tf
414 lines (396 loc) · 11.3 KB
/
main.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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
resource "aws_elastic_beanstalk_environment" "environment" {
name = "${var.env_name}"
application = "${var.app_name}"
solution_stack_name = "${var.solution_stack_name}"
wait_for_ready_timeout = "20m"
tier = "WebServer"
# ASG
setting {
namespace = "aws:autoscaling:asg"
name = "Cooldown"
value = "360"
}
setting {
namespace = "aws:autoscaling:asg"
name = "MinSize"
value = "3"
}
setting {
namespace = "aws:autoscaling:asg"
name = "MaxSize"
value = "4"
}
# Launch Configuration
setting {
namespace = "aws:autoscaling:launchconfiguration"
name = "EC2KeyName"
value = "${var.key_pair_name}"
}
setting {
namespace = "aws:autoscaling:launchconfiguration"
name = "IamInstanceProfile"
value = "${var.iaminstanceprofile}"
}
setting {
namespace = "aws:autoscaling:launchconfiguration"
name = "ImageId"
value = "${var.ami_id}"
}
setting {
namespace = "aws:autoscaling:launchconfiguration"
name = "InstanceType"
value = "${var.instance_type}"
}
setting {
namespace = "aws:autoscaling:launchconfiguration"
name = "MonitoringInterval"
value = "5 minutes"
}
setting {
namespace = "aws:autoscaling:launchconfiguration"
name = "SecurityGroups"
value = "${aws_security_group.eb.id}"
}
# AWS:AUTOSCALING:TRIGGER
setting {
namespace = "aws:autoscaling:trigger"
name = "BreachDuration"
value = "5"
}
setting {
namespace = "aws:autoscaling:trigger"
name = "LowerBreachScaleIncrement"
value = "-1"
}
setting {
namespace = "aws:autoscaling:trigger"
name = "LowerThreshold"
value = "6"
}
setting {
namespace = "aws:autoscaling:trigger"
name = "MeasureName"
value = "CPUUtilization"
}
setting {
namespace = "aws:autoscaling:trigger"
name = "Period"
value = "1"
}
setting {
namespace = "aws:autoscaling:trigger"
name = "Statistic"
value = "Average"
}
setting {
namespace = "aws:autoscaling:trigger"
name = "Unit"
value = "Percent"
}
setting {
namespace = "aws:autoscaling:trigger"
name = "UpperBreachScaleIncrement"
value = "1"
}
setting {
namespace = "aws:autoscaling:trigger"
name = "UpperThreshold"
value = "40"
}
# AWS:AUTOSCALING:UPDATEPOLICY:ROLLINGUPDATE
# setting {
# namespace = "aws:autoscaling:updatepolicy:rollingupdate"
# name = "MaxBatchSize"
# value = "One-third of the minimum size of the autoscaling group, rounded to the next highest integer."
# }
# setting {
# namespace = "aws:autoscaling:updatepolicy:rollingupdate"
# name = "MinInstancesInService"
# value = "The minimum size of the AutoScaling group or one less than the maximum size of the autoscaling group, whichever is lower."
# }
setting {
namespace = "aws:autoscaling:updatepolicy:rollingupdate"
name = "RollingUpdateEnabled"
value = "true"
}
setting {
namespace = "aws:autoscaling:updatepolicy:rollingupdate"
name = "RollingUpdateType"
value = "Health"
}
# setting {
# namespace = "aws:autoscaling:updatepolicy:rollingupdate"
# name = "PauseTime"
# value = "Automatically computed based on instance type and container."
# }
setting {
namespace = "aws:autoscaling:updatepolicy:rollingupdate"
name = "Timeout"
value = "PT30M"
}
# AWS:EC2:VPC
setting {
namespace = "aws:ec2:vpc"
name = "VPCId"
value = "${var.vpc_id}"
}
setting {
namespace = "aws:ec2:vpc"
name = "Subnets"
value = "${var.vpc_subnets}"
}
setting {
namespace = "aws:ec2:vpc"
name = "ELBSubnets"
value = "${var.elb_subnet_ids}"
}
setting {
namespace = "aws:ec2:vpc"
name = "AssociatePublicIpAddress"
value = "true"
}
# AWS:ELASTICBEANSTALK:APPLICATION
setting {
namespace = "aws:elasticbeanstalk:application"
name = "Application Healthcheck URL"
value = "${var.healthCheckEndpoint}"
}
# AWS:ELASTICBEANSTALK:APPLICATION:ENVIRONMENT
setting {
namespace = "aws:elasticbeanstalk:application:environment"
name = "EB_ENV_NAME"
value = "koding-kafka"
}
# AWS:ELASTICBEANSTALK:COMMAND
setting {
namespace = "aws:elasticbeanstalk:command"
name = "DeploymentPolicy"
value = "${var.deployment_type}"
}
setting {
namespace = "aws:elasticbeanstalk:command"
name = "Timeout"
value = "${var.deployment_command_timeout}"
}
setting {
namespace = "aws:elasticbeanstalk:command"
name = "BatchSizeType"
value = "${var.deployment_batch_size_type}"
}
setting {
namespace = "aws:elasticbeanstalk:command"
name = "BatchSize"
value = "${var.deployment_batch_size}"
}
setting {
namespace = "aws:elasticbeanstalk:command"
name = "IgnoreHealthCheck"
value = "false"
}
setting {
namespace = "aws:elasticbeanstalk:command"
name = "HealthCheckSuccessThreshold"
value = "Ok"
}
# AWS:ELASTICBEANSTALK:ENVIRONMENT
setting {
namespace = "aws:elasticbeanstalk:environment"
name = "EnvironmentType"
value = "LoadBalanced"
}
setting {
namespace = "aws:elasticbeanstalk:environment"
name = "ServiceRole"
value = "${var.service_role_name}"
}
# AWS:ELASTICBEANSTALK:HEALTHREPORTING:SYSTEM
setting {
namespace = "aws:elasticbeanstalk:healthreporting:system"
name = "SystemType"
value = "basic"
}
# AWS:ELASTICBEANSTALK:SNS:TOPICS
setting {
namespace = "aws:elasticbeanstalk:sns:topics"
name = "Notification Endpoint"
value = "sysops [email protected]"
}
setting {
namespace = "aws:elasticbeanstalk:sns:topics"
name = "Notification Protocol"
value = "email"
}
# AWS:ELB:HEALTHCHECK
setting {
namespace = "aws:elb:healthcheck"
name = "HealthyThreshold"
value = "3"
}
setting {
namespace = "aws:elb:healthcheck"
name = "Interval"
value = "10"
}
setting {
# HealthCheck timeout must be less than interval.
namespace = "aws:elb:healthcheck"
name = "Timeout"
value = "5"
}
setting {
namespace = "aws:elb:healthcheck"
name = "UnhealthyThreshold"
value = "5"
}
# AWS:ELB:LOADBALANCER
setting {
namespace = "aws:elb:loadbalancer"
name = "CrossZone"
value = "true"
}
setting {
namespace = "aws:elb:loadbalancer"
name = "SecurityGroups"
value = "${aws_security_group.elb.id}"
}
setting {
namespace = "aws:elb:loadbalancer"
name = "ManagedSecurityGroup"
value = "${aws_security_group.elb.id}"
}
# AWS:ELB:LISTENER
## 9092
setting {
namespace = "aws:elb:listener:9092"
name = "ListenerProtocol"
value = "TCP"
}
setting {
namespace = "aws:elb:listener:9092"
name = "InstancePort"
value = "9092"
}
setting {
namespace = "aws:elb:listener:9092"
name = "InstanceProtocol"
value = "TCP"
}
setting {
namespace = "aws:elb:listener:9092"
name = "ListenerEnabled"
value = "true"
}
# AWS:ELB:POLICIES
setting {
namespace = "aws:elb:policies"
name = "ConnectionDrainingEnabled"
value = "true"
}
setting {
namespace = "aws:elb:policies"
name = "ConnectionDrainingTimeout"
value = "20"
}
# setting {
# namespace = "aws:elb:policies"
# name = "LoadBalancerPorts"
# value = ":all"
# }
setting {
namespace = "aws:elb:policies"
name = "ConnectionSettingIdleTimeout"
value = "60"
}
# setting {
# namespace = "aws:elb:policies"
# name = "Stickiness Cookie Expiration"
# value = "0"
# }
# setting {
# namespace = "aws:elb:policies"
# name = "Stickiness Policy"
# value = "false"
# }
# AWS:ELB:POLICIES
# setting {
# namespace = "aws:elb:policies:ProxyProtocolPolicyType"
# name = "LoadBalancerPorts"
# value = "60"
# }
# setting {
# # The name of the application-generated cookie that controls the session
# # lifetimes of a AppCookieStickinessPolicyType policy. This policy can be
# # associated only with HTTP/HTTPS listeners.
# namespace = "aws:elb:policies:ProxyProtocolPolicyType"
# name = "CookieName"
# value = "None"
# }
# setting {
# # A comma-separated list of the instance ports that this policy applies to.
# # use :all to indicate all instance ports
# namespace = "aws:elb:policies:ProxyProtocolPolicyType"
# name = "InstancePorts"
# value = "79"
# }
# setting {
# # A comma-separated list of the listener ports that this policy applies to.
# # use :all to indicate all instance ports
# namespace = "aws:elb:policies:ProxyProtocolPolicyType"
# name = "LoadBalancerPorts"
# value = "None"
# }
# setting {
# # For a ProxyProtocolPolicyType policy, specifies whether to include the IP
# # address and port of the originating request for TCP messages. This policy
# # can be associated only with TCP/SSL listeners.
# namespace = "aws:elb:policies:ProxyProtocolPolicyType"
# name = "ProxyProtocol"
# value = "true"
# }
# setting {
# # A comma-separated list of policy names (from the PublicKeyPolicyType
# # policies) for a BackendServerAuthenticationPolicyType policy that controls
# # authentication to a back-end server or servers. This policy can be
# # associated only with back-end servers that are using HTTPS/SSL.
# namespace = "aws:elb:policies:ProxyProtocolPolicyType"
# name = "PublicKeyPolicyNames"
# value = "None"
# }
# setting {
# # A comma-separated list of SSL protocols to be enabled for a
# # SSLNegotiationPolicyType policy that defines the ciphers and protocols
# # that will be accepted by the load balancer. This policy can be associated
# # only with HTTPS/SSL listeners.
# namespace = "aws:elb:policies:ProxyProtocolPolicyType"
# name = "SSLProtocols"
# value = "None"
# }
# setting {
# # The name of a predefined security policy that adheres to AWS security best
# # practices and that you want to enable for a SSLNegotiationPolicyType
# # policy that defines the ciphers and protocols that will be accepted by the
# # load balancer. This policy can be associated only with HTTPS/SSL
# # listeners.
# namespace = "aws:elb:policies:ProxyProtocolPolicyType"
# name = "SSLReferencePolicy"
# value = "None"
# }
# setting {
# # The amount of time, in seconds, that each cookie is valid. 0 to 1000000
# namespace = "aws:elb:policies:ProxyProtocolPolicyType"
# name = "Stickiness Cookie Expiration"
# value = "0"
# }
# setting {
# # Binds a user's session to a specific server instance so that all requests
# # coming from the user during the session are sent to the same server
# # instance.
# namespace = "aws:elb:policies:ProxyProtocolPolicyType"
# name = "Stickiness Policy"
# value = "false"
# }
tags {
Name = "${var.env_name}"
monitoring = "datadog"
}
}