diff --git a/ui-v2/app/helpers/css-var.js b/ui-v2/app/helpers/css-var.js
index 13665f8cf9..77f31ecd97 100644
--- a/ui-v2/app/helpers/css-var.js
+++ b/ui-v2/app/helpers/css-var.js
@@ -1,9 +1,11 @@
import { helper } from '@ember/component/helper';
+// TODO: Look at ember-inline-svg
const cssVars = {
'--kubernetes-color-svg': `url('data:image/svg+xml;charset=UTF-8,')`,
'--terraform-color-svg': `url('data:image/svg+xml;charset=UTF-8,')`,
'--nomad-color-svg': `url('data:image/svg+xml;charset=UTF-8,')`,
'--consul-color-svg': `url('data:image/svg+xml;charset=UTF-8,')`,
+ '--aws-color-svg': `url('data:image/svg+xml;charset=UTF-8,')`,
};
export function cssVar(params, hash) {
return typeof cssVars[params[0]] !== 'undefined' ? cssVars[params[0]] : params[1];