The overrides YAML file is formatted identically to the defaults file:
// Tier 1
enumStr:Id1:
burst: 10
count: 10
period: 10s
enumStr:Id2:
burst: 10
count: 10
period: 10s
// Tier 2
enumStr:Id3:
burst: 20
count: 20
period: 10s
This leads to a lot of repeated limit data. Instead, we should format them like so:
// Tier 1
- enumStr:
burst: 10
count: 10
period: 10s
ids:
- Id1
- Id2
// Tier 2
- enumStr:
burst: 20
count: 20
period: 10s
ids:
- Id3
The overrides YAML file is formatted identically to the defaults file:
This leads to a lot of repeated limit data. Instead, we should format them like so: