-
-
Notifications
You must be signed in to change notification settings - Fork 245
/
fixtures.us-east-2.tfvars
73 lines (63 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
region = "us-east-2"
namespace = "eg"
stage = "test"
name = "container-definition"
container_name = "app"
container_image = "cloudposse/geodesic"
container_memory = 256
container_memory_reservation = 128
container_cpu = 256
essential = true
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
}
]
port_mappings = [
{
containerPort = 8080
hostPort = 80
protocol = "tcp"
name = "http"
appProtocol = "http"
},
{
containerPort = 8081
hostPort = 443
protocol = "udp"
name = "https"
appProtocol = "http"
}
]
log_configuration = {
logDriver = "json-file"
options = {
max-size = "10m"
max-file = "3"
}
secretOptions = null
}
privileged = false
extra_hosts = [
{
ipAddress = "127.0.0.1"
hostname = "app.local"
},
]
hostname = "hostname"
pseudo_terminal = true
interactive = true