IAM (Identity and Access Management) controla quem pode fazer o quê na AWS — gerenciando usuários, grupos, funções e permissões. É fundamental para a segurança da AWS: toda ação é autorizada através do IAM, portanto entender isso é essencial.
O que o IAM gerencia
IAM controls AUTHENTICATION (who you are) and AUTHORIZATION (what you can do):
USERS → individual identities (people or applications) with credentials
GROUPS → collections of users (assign permissions to a group → all its users get them)
ROLES → identities ASSUMED temporarily (by users, services, or AWS resources)
— no permanent credentials; key for services/cross-account access
POLICIES → JSON documents defining PERMISSIONS (what actions on what resources)
