mirror of https://github.com/hashicorp/consul
31 lines
721 B
JavaScript
31 lines
721 B
JavaScript
|
export const createPolicies = function(item) {
|
||
|
return item.Policies.map(function(item) {
|
||
|
return {
|
||
|
template: '',
|
||
|
...item,
|
||
|
};
|
||
|
})
|
||
|
.concat(
|
||
|
item.ServiceIdentities.map(function(item) {
|
||
|
const policy = {
|
||
|
template: 'service-identity',
|
||
|
Name: item.ServiceName,
|
||
|
};
|
||
|
if (typeof item.Datacenters !== 'undefined') {
|
||
|
policy.Datacenters = item.Datacenters;
|
||
|
}
|
||
|
return policy;
|
||
|
})
|
||
|
)
|
||
|
.concat(
|
||
|
item.NodeIdentities.map(function(item) {
|
||
|
const policy = {
|
||
|
template: 'node-identity',
|
||
|
Name: item.NodeName,
|
||
|
Datacenter: item.Datacenter,
|
||
|
};
|
||
|
return policy;
|
||
|
})
|
||
|
);
|
||
|
};
|