-
-
Notifications
You must be signed in to change notification settings - Fork 693
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: Add max session duration for IAM role #391
Conversation
d5b8ee3
to
822b4c4
Compare
This PR has been automatically marked as stale because it has been open 30 days |
@antonbabenko any chance of getting a review on this? |
This PR has been automatically marked as stale because it has been open 30 days |
Still relevant |
This PR has been automatically marked as stale because it has been open 30 days |
Add role_maximum_session_duration to example
Update README (terraform-docs working correctly)
@antonbabenko any chance on getting this merged? |
Please fix the CI by pinning the version of the VPC module to version |
Done! |
## [4.14.0](v4.13.0...v4.14.0) (2023-04-14) ### Features * Add max session duration for IAM role ([#391](#391)) ([3a21ac5](3a21ac5))
This PR is included in version 4.14.0 🎉 |
I'm going to lock this pull request because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. If you have found a problem that seems related to this change, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further. |
Description
Add ability to specify maximum session duration for the created role.
Motivation and Context
We're using this module to create all our services. In development, the developers assume the roles of the services to mimic the permissions they have. By default the sessions can have a maximum duration of an hour (3600 seconds) and that means that developers need to re-assume multiple times per day.
Breaking Changes
There should be no changes as the default remains the same.
How Has This Been Tested?
examples/*
to demonstrate and validate my change(s)examples/*
projectspre-commit run -a
on my pull request