-
Notifications
You must be signed in to change notification settings - Fork 0
/
terraform.tfvars
97 lines (95 loc) · 2.01 KB
/
terraform.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
docker_ports = [
{
service_name = "api-docs"
host_port = 3001
container_port = 3001
},
{
service_name = "api-gateway"
host_port = 3002
container_port = 3002
},
{
service_name = "ipfs-node"
host_port = [5001, 5002, 4001, 4002, 8080, 8081]
container_port = [5001, 5002, 4001, 4002, 8080, 8081]
},
{
service_name = "message-broker"
host_port = [4222, 8222]
container_port = [4222, 8222]
},
{
service_name = "mongo"
host_port = 27017
container_port = 27017
},
{
service_name = "mongo-express"
host_port = 8081
container_port = 8081
},
{
service_name = "mrv-sender"
host_port = 3005
container_port = 3005
},
{
service_name = "topic-viewer"
host_port = 3006
container_port = 3006
},
{
service_name = "vault"
host_port = 8200
container_port = 8200
},
{
service_name = "web-proxy"
host_port = 3000
container_port = 80
}
]
docker_environment = {
mongo_express = {
ME_CONFIG_MONGODB_SERVER = "mongo",
ME_CONFIG_MONGODB_PORT = 27017,
ME_CONFIG_SITE_BASEURL = "/mongo-admin"
}
vault = {
VAULT_SERVER = "http://0.0.0.0:8200"
VAULT_DEV_ROOT_TOKEN_ID = "1234"
},
worker_service_1 = {
SERVICE_CHANNEL = "worker.1"
},
worker_service_2 = {
SERVICE_CHANNEL = "worker.2"
}
}
docker_volumes = [
{
service_name = "ipfs-node"
host_path = "${abspath("./runtime-data/ipfs/data")}"
container_path = "/export"
access_mode = "rw"
},
{
service_name = "ipfs-node"
host_path = "${abspath("./runtime-data/ipfs/staging")}"
container_path = "/data/ipfs"
access_mode = "rw"
},
{
service_name = "vault"
host_path = "./file"
container_path = "/vault/file"
access_mode = "rw"
},
{
service_name = "vault"
host_path = "./config"
container_path = "/vault/config"
access_mode = "rw"
}
]