-
-
Notifications
You must be signed in to change notification settings - Fork 156
/
Copy pathfixtures.us-east-2.tfvars
141 lines (77 loc) · 2.56 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
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
region = "us-east-2"
availability_zones = ["us-east-2a", "us-east-2b"]
namespace = "eg"
stage = "test"
name = "ecs-web-app"
vpc_cidr_block = "172.16.0.0/16"
container_image = "cloudposse/default-backend"
container_cpu = 256
container_memory = 512
container_memory_reservation = 128
container_port = 80
container_port_mappings = [
{
containerPort = 80
hostPort = 80
protocol = "tcp"
}
]
desired_count = 1
launch_type = "FARGATE"
alb_target_group_alarms_enabled = true
alb_target_group_alarms_3xx_threshold = 25
alb_target_group_alarms_4xx_threshold = 25
alb_target_group_alarms_5xx_threshold = 25
alb_target_group_alarms_response_time_threshold = 0.5
alb_target_group_alarms_period = 300
alb_target_group_alarms_evaluation_periods = 1
alb_ingress_healthcheck_path = "/"
alb_ingress_listener_unauthenticated_priority = 1000
alb_ingress_unauthenticated_paths = ["/"]
aws_logs_region = "us-east-2"
log_driver = "awslogs"
ecs_alarms_enabled = true
ecs_alarms_cpu_utilization_high_threshold = 80
ecs_alarms_cpu_utilization_high_evaluation_periods = 1
ecs_alarms_cpu_utilization_high_period = 300
ecs_alarms_cpu_utilization_low_threshold = 20
ecs_alarms_cpu_utilization_low_evaluation_periods = 1
ecs_alarms_cpu_utilization_low_period = 300
ecs_alarms_memory_utilization_high_threshold = 80
ecs_alarms_memory_utilization_high_evaluation_periods = 1
ecs_alarms_memory_utilization_high_period = 300
ecs_alarms_memory_utilization_low_threshold = 20
ecs_alarms_memory_utilization_low_evaluation_periods = 1
ecs_alarms_memory_utilization_low_period = 300
autoscaling_enabled = true
autoscaling_dimension = "memory"
autoscaling_min_capacity = 1
autoscaling_max_capacity = 2
autoscaling_scale_up_adjustment = 1
autoscaling_scale_up_cooldown = 60
autoscaling_scale_down_adjustment = -1
autoscaling_scale_down_cooldown = 300
poll_source_changes = false
webhook_enabled = false
webhook_target_action = "Source"
webhook_filter_json_path = "$.ref"
webhook_filter_match_equals = "refs/heads/{Branch}"
authentication_type = ""
codepipeline_enabled = true
codepipeline_s3_bucket_force_destroy = true
codepipeline_github_oauth_token = "test"
codepipeline_github_webhook_events = ["push"]
codepipeline_repo_owner = "cloudposse"
codepipeline_repo_name = "default-backend"
codepipeline_branch = "master"
codepipeline_badge_enabled = false
codepipeline_build_image = "aws/codebuild/docker:17.09.0"
codepipeline_build_timeout = 20
build_environment_variables = [
{
name = "TEST"
value = "TEST"
type = "PLAINTEXT"
}
]
container_environment = []