1 Answer
- Newest
- Most votes
- Most comments
0
For detecting user removal from Entra ID (formerly Azure AD) that syncs to AWS SSO (now called IAM Identity Center), you can use an EventBridge rule with this pattern.
{ "source": ["aws.sso"], "detail-type": ["AWS API Call via CloudTrail"], "detail": { "eventSource": ["sso.amazonaws.com", "sso-directory.amazonaws.com"], "eventName": ["DeleteUser"] } }
However, you should be aware of important point: The event might have a slight delay between the user being removed in Entra ID and the deletion being reflected in AWS SSO due to sync timing.
Reference: https://docs.aws.amazon.com/eventbridge/latest/ref/events-ref-sso-directory.html
answered a year ago
Relevant content
asked a year ago
asked a year ago
- AWS OFFICIALUpdated 8 months ago
