5875e4b15b
* Add consul-api-double under api * Update config to reflect api change * Remove consul-api-double as a dependency * api -> mock-api * Fixup mocks path for staging
14 lines
251 B
Plaintext
14 lines
251 B
Plaintext
[
|
|
${
|
|
range(env('CONSUL_DATACENTER_COUNT', 10)).map((item, i) => {
|
|
if(i === 0) {
|
|
return `"dc1"`;
|
|
}
|
|
return `
|
|
"${fake.address.countryCode().toLowerCase()}_${ i % 2 ? "west" : "east"}-${i}"
|
|
`;
|
|
}
|
|
)
|
|
}
|
|
]
|