Login
Remember
Register
Ask a Question
What are some best practices to manage access to AWS resources?
0
votes
asked
Aug 1, 2021
in
AWS Access Management
by
rajeshsharma
What are some best practices to manage access to AWS resources?
aws-resources
aws-access
aws-manage-access
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Aug 1, 2021
by
rajeshsharma
Following are some best practices to manage access to AWS resources.
Do not use root account - Your root account has access to all your AWS resources and services, hence it is a best practice to not share or use it.
Use Groups - Instead of giving access to AWS resources and services for individual users - create groups, give needed access to the groups, and add users to the groups - so that all users within a group has the same access.
Enable Multi-factor Authentication (MFA) - It is a best practice to enable MFA for privileged users such as admins. MFA adds an extra layer of protection on top of basic user-id and password based authentication.
Grant least privileges - Grant only the minimum required permissions for the user or group.
...