ui: Change environment switch statement to correct env vars

This commit is contained in:
John Cowen 2020-01-24 16:56:21 +00:00
parent 4aec220481
commit 950745dfbe
1 changed files with 5 additions and 3 deletions

View File

@ -97,7 +97,7 @@ module.exports = function(environment) {
autoboot: false,
}),
});
// passthrough
break;
case environment === 'staging':
ENV = Object.assign({}, ENV, {
'@hashicorp/ember-cli-api-double': {
@ -105,14 +105,16 @@ module.exports = function(environment) {
endpoints: ['/node_modules/@hashicorp/consul-api-double/v1'],
},
});
// passthrough
break;
case environment === 'production':
ENV = Object.assign({}, ENV, {
CONSUL_ACLS_ENABLED: '{{.ACLsEnabled}}',
CONSUL_NSPACES_ENABLED:
'{{ if .NamespacesEnabled }}{{.NamespacesEnabled}}{{ else }}false{{ end }}',
});
// passthrough
break;
}
switch (true) {
case isDevLike:
ENV = Object.assign({}, ENV, {
CONSUL_NSPACES_ENABLED: true,