├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── cfn └── iam-notifier.cfn.json ├── images └── slack-sample.jpg ├── lambda └── iam-notify-slack.py └── test ├── attach_policy_to_group.json ├── attach_policy_to_role.json ├── attach_policy_to_user.json ├── detach_policy_from_group.json ├── detach_policy_from_role.json ├── detach_policy_from_user.json ├── edit_policy_event.json └── new_policy_event.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Signiant/aws-iam-slack-notifer/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Signiant/aws-iam-slack-notifer/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Signiant/aws-iam-slack-notifer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Signiant/aws-iam-slack-notifer/HEAD/README.md -------------------------------------------------------------------------------- /cfn/iam-notifier.cfn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Signiant/aws-iam-slack-notifer/HEAD/cfn/iam-notifier.cfn.json -------------------------------------------------------------------------------- /images/slack-sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Signiant/aws-iam-slack-notifer/HEAD/images/slack-sample.jpg -------------------------------------------------------------------------------- /lambda/iam-notify-slack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Signiant/aws-iam-slack-notifer/HEAD/lambda/iam-notify-slack.py -------------------------------------------------------------------------------- /test/attach_policy_to_group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Signiant/aws-iam-slack-notifer/HEAD/test/attach_policy_to_group.json -------------------------------------------------------------------------------- /test/attach_policy_to_role.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Signiant/aws-iam-slack-notifer/HEAD/test/attach_policy_to_role.json -------------------------------------------------------------------------------- /test/attach_policy_to_user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Signiant/aws-iam-slack-notifer/HEAD/test/attach_policy_to_user.json -------------------------------------------------------------------------------- /test/detach_policy_from_group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Signiant/aws-iam-slack-notifer/HEAD/test/detach_policy_from_group.json -------------------------------------------------------------------------------- /test/detach_policy_from_role.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Signiant/aws-iam-slack-notifer/HEAD/test/detach_policy_from_role.json -------------------------------------------------------------------------------- /test/detach_policy_from_user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Signiant/aws-iam-slack-notifer/HEAD/test/detach_policy_from_user.json -------------------------------------------------------------------------------- /test/edit_policy_event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Signiant/aws-iam-slack-notifer/HEAD/test/edit_policy_event.json -------------------------------------------------------------------------------- /test/new_policy_event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Signiant/aws-iam-slack-notifer/HEAD/test/new_policy_event.json --------------------------------------------------------------------------------