-
-
Notifications
You must be signed in to change notification settings - Fork 196
/
fixtures.us-east-2.tfvars
82 lines (56 loc) · 1.19 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
region = "us-east-2"
availability_zones = ["us-east-2a", "us-east-2b"]
namespace = "eg"
stage = "test"
name = "ecs-alb-service-task"
vpc_cidr_block = "172.16.0.0/16"
ecs_launch_type = "FARGATE"
network_mode = "awsvpc"
ignore_changes_task_definition = true
assign_public_ip = false
propagate_tags = "TASK_DEFINITION"
deployment_minimum_healthy_percent = 100
deployment_maximum_percent = 200
deployment_controller_type = "ECS"
desired_count = 1
task_memory = 512
task_cpu = 256
container_name = "geodesic"
container_image = "cloudposse/geodesic"
container_memory = 256
container_memory_reservation = 128
container_cpu = 256
container_essential = true
container_readonly_root_filesystem = false
container_environment = [
{
name = "string_var"
value = "I am a string"
},
{
name = "true_boolean_var"
value = true
},
{
name = "false_boolean_var"
value = false
},
{
name = "integer_var"
value = 42
}
]
container_port_mappings = [
{
containerPort = 80
hostPort = 80
protocol = "tcp"
},
{
containerPort = 443
hostPort = 443
protocol = "udp"
}
]
force_new_deployment = true
redeploy_on_apply = true