-
Notifications
You must be signed in to change notification settings - Fork 0
/
fixtures.us-east-2.tfvars
90 lines (55 loc) · 1.72 KB
/
fixtures.us-east-2.tfvars
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
region = "us-east-2"
availability_zones = ["us-east-2a", "us-east-2b"]
namespace = "eg"
stage = "test"
name = "eb-env"
description = "Test elastic-beanstalk-environment"
tier = "WebServer"
environment_type = "LoadBalanced"
loadbalancer_type = "application"
availability_zone_selector = "Any 2"
instance_type = "t3.micro"
autoscale_min = 1
autoscale_max = 2
wait_for_ready_timeout = "20m"
force_destroy = true
rolling_update_enabled = true
rolling_update_type = "Health"
updating_min_in_service = 0
updating_max_batch = 1
healthcheck_url = "/"
application_port = 80
root_volume_size = 8
root_volume_type = "gp2"
autoscale_measure_name = "CPUUtilization"
autoscale_statistic = "Average"
autoscale_unit = "Percent"
autoscale_lower_bound = 20
autoscale_lower_increment = -1
autoscale_upper_bound = 80
autoscale_upper_increment = 1
elb_scheme = "public"
// https://docs.aws.amazon.com/elasticbeanstalk/latest/platforms/platforms-supported.html
// https://docs.aws.amazon.com/elasticbeanstalk/latest/platforms/platforms-supported.html#platforms-supported.docker
solution_stack_name = "64bit Amazon Linux 2018.03 v2.12.17 running Docker 18.06.1-ce"
version_label = ""
dns_zone_id = ""
// https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/command-options-general.html
additional_settings = [
{
namespace = "aws:elasticbeanstalk:environment:process:default"
name = "StickinessEnabled"
value = "false"
},
{
namespace = "aws:elasticbeanstalk:managedactions"
name = "ManagedActionsEnabled"
value = "false"
}
]
env_vars = {
"DB_HOST" = "xxxxxxxxxxxxxx"
"DB_USERNAME" = "yyyyyyyyyyyyy"
"DB_PASSWORD" = "zzzzzzzzzzzzzzzzzzz"
"ANOTHER_ENV_VAR" = "123456789"
}