-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathhappy-aws.deploy.config.json
43 lines (43 loc) · 1.18 KB
/
happy-aws.deploy.config.json
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
{
"services": [
{
"id": "simulator",
"local_source_path": "demo-simulator",
"deploy_script_path": "deploy/linux/roles",
"port": 5001,
"destinations": [
"host"
],
"params": {
"delay_start_ms": 5000
},
"files": [
{
"destination_filepath": "engine/startScenario.json",
"content": [
{
"id": "basic_traffic",
"rpm": 10,
"steps": [
{
"name": "httpGet",
"params": [
"localhost:3001/api/inventory"
]
}
]
}
]
}
]
}
],
"resources": [
{
"id": "host",
"provider": "aws",
"type": "ec2",
"size": "t2.micro"
}
]
}