├── .editorconfig ├── .github ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── nodejs.yml │ └── publish.yml ├── .gitignore ├── .gitpod.yml ├── .npmignore ├── .nvmrc ├── CONTRIBUTING.md ├── CONTRIBUTORS.md ├── Dockerfile ├── LICENSE ├── README.md ├── docs └── architecture │ └── ADR_001_Latest_aws_and_nodejs_in_Docker.md ├── eslint.config.mjs ├── index.js ├── jasmine.json ├── package.json ├── scripts ├── build-packages ├── deploy-docker ├── postversion ├── preversion └── validate-features └── src ├── clean-aws-credentials-cache ├── index.js └── index.spec.js ├── get-profile-list ├── index.js └── index.spec.js ├── get-profile-options-values ├── index.js └── index.spec.js ├── index.js ├── is-role-arn └── index.js ├── is-windows └── index.js ├── load-profiles-from-config └── index.js ├── options └── index.js └── remove-object-entries ├── index.js └── index.spec.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltwater/awsudo/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltwater/awsudo/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/nodejs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltwater/awsudo/HEAD/.github/workflows/nodejs.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltwater/awsudo/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | node_modules/ 3 | 4 | .screen_layout 5 | npm-debug.log* 6 | -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- 1 | tasks: 2 | - init: npm ci 3 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltwater/awsudo/HEAD/.npmignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | lts/iron 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltwater/awsudo/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltwater/awsudo/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltwater/awsudo/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltwater/awsudo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltwater/awsudo/HEAD/README.md -------------------------------------------------------------------------------- /docs/architecture/ADR_001_Latest_aws_and_nodejs_in_Docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltwater/awsudo/HEAD/docs/architecture/ADR_001_Latest_aws_and_nodejs_in_Docker.md -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltwater/awsudo/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltwater/awsudo/HEAD/index.js -------------------------------------------------------------------------------- /jasmine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltwater/awsudo/HEAD/jasmine.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltwater/awsudo/HEAD/package.json -------------------------------------------------------------------------------- /scripts/build-packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltwater/awsudo/HEAD/scripts/build-packages -------------------------------------------------------------------------------- /scripts/deploy-docker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltwater/awsudo/HEAD/scripts/deploy-docker -------------------------------------------------------------------------------- /scripts/postversion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltwater/awsudo/HEAD/scripts/postversion -------------------------------------------------------------------------------- /scripts/preversion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltwater/awsudo/HEAD/scripts/preversion -------------------------------------------------------------------------------- /scripts/validate-features: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltwater/awsudo/HEAD/scripts/validate-features -------------------------------------------------------------------------------- /src/clean-aws-credentials-cache/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltwater/awsudo/HEAD/src/clean-aws-credentials-cache/index.js -------------------------------------------------------------------------------- /src/clean-aws-credentials-cache/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltwater/awsudo/HEAD/src/clean-aws-credentials-cache/index.spec.js -------------------------------------------------------------------------------- /src/get-profile-list/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltwater/awsudo/HEAD/src/get-profile-list/index.js -------------------------------------------------------------------------------- /src/get-profile-list/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltwater/awsudo/HEAD/src/get-profile-list/index.spec.js -------------------------------------------------------------------------------- /src/get-profile-options-values/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltwater/awsudo/HEAD/src/get-profile-options-values/index.js -------------------------------------------------------------------------------- /src/get-profile-options-values/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltwater/awsudo/HEAD/src/get-profile-options-values/index.spec.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltwater/awsudo/HEAD/src/index.js -------------------------------------------------------------------------------- /src/is-role-arn/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltwater/awsudo/HEAD/src/is-role-arn/index.js -------------------------------------------------------------------------------- /src/is-windows/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltwater/awsudo/HEAD/src/is-windows/index.js -------------------------------------------------------------------------------- /src/load-profiles-from-config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltwater/awsudo/HEAD/src/load-profiles-from-config/index.js -------------------------------------------------------------------------------- /src/options/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltwater/awsudo/HEAD/src/options/index.js -------------------------------------------------------------------------------- /src/remove-object-entries/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltwater/awsudo/HEAD/src/remove-object-entries/index.js -------------------------------------------------------------------------------- /src/remove-object-entries/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meltwater/awsudo/HEAD/src/remove-object-entries/index.spec.js --------------------------------------------------------------------------------