open-consul/ui/packages/consul-ui/mock-api/v1/catalog/datacenters

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}"
`;
}
)
}
]