├── .gitignore ├── Design.pptx ├── LICENSE ├── README.md ├── code ├── GetAvailableDataLambda.js ├── WorkSpacesUsageLambda.js └── WorkSpacesUsageModule.js ├── config └── example.json ├── design.png ├── docs ├── api-key.png ├── dashboard.png ├── graph.png ├── login.png ├── recommendations.png └── script.png ├── package.json ├── pricing └── ap-southeast-2.json ├── serverless.yaml └── web ├── css └── app.css ├── favicon.ico ├── img ├── aws.png ├── eye.svg ├── eye_disabled.svg ├── graph_up.svg └── loading.gif ├── index.html ├── js ├── app.js └── vanilla-router-1.2.7.js ├── site_config.json └── templates ├── allInstances.hbs ├── dashboard.hbs ├── home.hbs ├── idleInstances.hbs ├── loading.hbs ├── login.hbs └── recommendations.hbs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jospas/WorkSpacesCostOptimisation/HEAD/.gitignore -------------------------------------------------------------------------------- /Design.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jospas/WorkSpacesCostOptimisation/HEAD/Design.pptx -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jospas/WorkSpacesCostOptimisation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jospas/WorkSpacesCostOptimisation/HEAD/README.md -------------------------------------------------------------------------------- /code/GetAvailableDataLambda.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jospas/WorkSpacesCostOptimisation/HEAD/code/GetAvailableDataLambda.js -------------------------------------------------------------------------------- /code/WorkSpacesUsageLambda.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jospas/WorkSpacesCostOptimisation/HEAD/code/WorkSpacesUsageLambda.js -------------------------------------------------------------------------------- /code/WorkSpacesUsageModule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jospas/WorkSpacesCostOptimisation/HEAD/code/WorkSpacesUsageModule.js -------------------------------------------------------------------------------- /config/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jospas/WorkSpacesCostOptimisation/HEAD/config/example.json -------------------------------------------------------------------------------- /design.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jospas/WorkSpacesCostOptimisation/HEAD/design.png -------------------------------------------------------------------------------- /docs/api-key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jospas/WorkSpacesCostOptimisation/HEAD/docs/api-key.png -------------------------------------------------------------------------------- /docs/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jospas/WorkSpacesCostOptimisation/HEAD/docs/dashboard.png -------------------------------------------------------------------------------- /docs/graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jospas/WorkSpacesCostOptimisation/HEAD/docs/graph.png -------------------------------------------------------------------------------- /docs/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jospas/WorkSpacesCostOptimisation/HEAD/docs/login.png -------------------------------------------------------------------------------- /docs/recommendations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jospas/WorkSpacesCostOptimisation/HEAD/docs/recommendations.png -------------------------------------------------------------------------------- /docs/script.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jospas/WorkSpacesCostOptimisation/HEAD/docs/script.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jospas/WorkSpacesCostOptimisation/HEAD/package.json -------------------------------------------------------------------------------- /pricing/ap-southeast-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jospas/WorkSpacesCostOptimisation/HEAD/pricing/ap-southeast-2.json -------------------------------------------------------------------------------- /serverless.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jospas/WorkSpacesCostOptimisation/HEAD/serverless.yaml -------------------------------------------------------------------------------- /web/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jospas/WorkSpacesCostOptimisation/HEAD/web/css/app.css -------------------------------------------------------------------------------- /web/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jospas/WorkSpacesCostOptimisation/HEAD/web/favicon.ico -------------------------------------------------------------------------------- /web/img/aws.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jospas/WorkSpacesCostOptimisation/HEAD/web/img/aws.png -------------------------------------------------------------------------------- /web/img/eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jospas/WorkSpacesCostOptimisation/HEAD/web/img/eye.svg -------------------------------------------------------------------------------- /web/img/eye_disabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jospas/WorkSpacesCostOptimisation/HEAD/web/img/eye_disabled.svg -------------------------------------------------------------------------------- /web/img/graph_up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jospas/WorkSpacesCostOptimisation/HEAD/web/img/graph_up.svg -------------------------------------------------------------------------------- /web/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jospas/WorkSpacesCostOptimisation/HEAD/web/img/loading.gif -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jospas/WorkSpacesCostOptimisation/HEAD/web/index.html -------------------------------------------------------------------------------- /web/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jospas/WorkSpacesCostOptimisation/HEAD/web/js/app.js -------------------------------------------------------------------------------- /web/js/vanilla-router-1.2.7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jospas/WorkSpacesCostOptimisation/HEAD/web/js/vanilla-router-1.2.7.js -------------------------------------------------------------------------------- /web/site_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jospas/WorkSpacesCostOptimisation/HEAD/web/site_config.json -------------------------------------------------------------------------------- /web/templates/allInstances.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jospas/WorkSpacesCostOptimisation/HEAD/web/templates/allInstances.hbs -------------------------------------------------------------------------------- /web/templates/dashboard.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jospas/WorkSpacesCostOptimisation/HEAD/web/templates/dashboard.hbs -------------------------------------------------------------------------------- /web/templates/home.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jospas/WorkSpacesCostOptimisation/HEAD/web/templates/home.hbs -------------------------------------------------------------------------------- /web/templates/idleInstances.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jospas/WorkSpacesCostOptimisation/HEAD/web/templates/idleInstances.hbs -------------------------------------------------------------------------------- /web/templates/loading.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jospas/WorkSpacesCostOptimisation/HEAD/web/templates/loading.hbs -------------------------------------------------------------------------------- /web/templates/login.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jospas/WorkSpacesCostOptimisation/HEAD/web/templates/login.hbs -------------------------------------------------------------------------------- /web/templates/recommendations.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jospas/WorkSpacesCostOptimisation/HEAD/web/templates/recommendations.hbs --------------------------------------------------------------------------------