├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── all-actions.txt └── bin ├── all-actions ├── check ├── extract-app.js └── update-and-commit /.gitignore: -------------------------------------------------------------------------------- 1 | var 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvedotrc/aws-iam-reference/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvedotrc/aws-iam-reference/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvedotrc/aws-iam-reference/HEAD/README.md -------------------------------------------------------------------------------- /all-actions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvedotrc/aws-iam-reference/HEAD/all-actions.txt -------------------------------------------------------------------------------- /bin/all-actions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvedotrc/aws-iam-reference/HEAD/bin/all-actions -------------------------------------------------------------------------------- /bin/check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvedotrc/aws-iam-reference/HEAD/bin/check -------------------------------------------------------------------------------- /bin/extract-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvedotrc/aws-iam-reference/HEAD/bin/extract-app.js -------------------------------------------------------------------------------- /bin/update-and-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvedotrc/aws-iam-reference/HEAD/bin/update-and-commit --------------------------------------------------------------------------------