forked from mongodb/terraform-aws-ecs-task-definition
-
Notifications
You must be signed in to change notification settings - Fork 0
/
varfile.tfvars
90 lines (74 loc) · 1.22 KB
/
varfile.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
environment = [
{
name = "AWS_DEFAULT_REGION"
value = "us-east-1"
},
]
family = "default"
healthCheck = {
command = ["echo"]
interval = 30
retries = 3
startPeriod = 0
timeout = 5
}
image = "mongo:3.6"
linuxParameters = {
capabilities = {
add = ["AUDIT_CONTROL", "AUDIT_WRITE"]
drop = ["SYS_RAWIO", "SYS_TIME"]
}
devices = [
{
containerPath = "/dev/disk0"
hostPath = "/dev/disk0"
permissions = ["read"]
},
]
initProcessEnabled = true
sharedMemorySize = 512
tmpfs = [
{
containerPath = "/tmp"
mountOptions = ["defaults"]
size = 512
},
]
}
logConfiguration = {
logDriver = "awslogs"
options = {
awslogs-group = "awslogs-mongodb"
awslogs-region = "us-east-1"
}
}
memoryReservation = 512
mountPoints = [
{
containerPath = "/dev/disk0"
readOnly = true
sourceVolume = "data"
},
]
name = "mongo"
portMappings = [
{
containerPort = 8080
hostPort = 0
protocol = "tcp"
},
]
ulimits = [
{
hardLimit = 1024
name = "cpu"
softLimit = 1024
},
]
user = "root"
volumes = [
{
name = "data"
},
]
workingDirectory = "~/project"