-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.yaml
50 lines (48 loc) · 1.39 KB
/
config.yaml
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
appName: "Scale down config"
assumedRoleArn: "arn:aws:iam::123456789:role/admin-role"
scalingRegions:
- region: "us-east-1"
serviceScaleConfigs:
- service: "kinesis"
streamArn: "arn:aws:kinesis:us-east-1:123456789012:stream/ScaleUpStream"
desiredShardCount: 1
- service: "dynamodb"
tableName: "ScaleUpTable"
isIndex: false
rcu:
minProvisionedCapacity: 1
maxProvisionedCapacity: 1000
wcu:
minProvisionedCapacity: 1
maxProvisionedCapacity: 1000
- service: "ec2"
asgName: "ScaleUpASG"
minCount: 1
maxCount: 10
desiredCount: 1
- service: "elasticache"
clusterId: "ScaleUpCluster"
engine: "redis"
nodeCount: 2
nodesToDelete: [ ]
- region: "us-west-2"
serviceScaleConfigs:
- service: "kinesis"
streamArn: "arn:aws:kinesis:us-west-2:123456789012:stream/ScaleUpStream"
desiredShardCount: 1
- service: "dynamodb"
tableName: "ScaleUpTable"
isIndex: false
rcu:
minProvisionedCapacity: 1
maxProvisionedCapacity: 1000
wcu:
minProvisionedCapacity: 1
maxProvisionedCapacity: 1000
- service: "elasticache"
clusterId: "ScaleUpCluster"
engine: "redis"
nodeCount: 2
nodesToDelete:
- "0001"
- "0002"