Iam all user activity email alert

0

hi team,

Is there any way to send email notification for all iam users activity in aws ? Please share suggestions

3 回答
1

CloudTrail will have IAM user activity. You can get CloudTrail events in EventBridge and create rules to match what you're interested in, or via CloudWatch Logs where you can create Metric Filters and alarms. You can target SNS for notifications or process via Lambda for example.

专家
已回答 1 年前
  • Hi Skinsman,

    I used to create cloudwatch event rule and created lambda function but however its not working below is the event pattern.

    { "source": [ "aws.iam" ], "detail-type": [ "AWS API Call via CloudTrail" ], "detail": { "eventSource": [ "iam.amazonaws.com" ] } }

0

One thing to add, you should well define what activities you want to be alerted, you probably don't want to be overwhelmed by alert mails.

AWS
yhaifa
已回答 1 年前
  • mainly i need for iam policy,role changes, network changes only.

0

I would like to understand what you are trying to solve for? What is your requirement? But, to answer your question, you can send trails via email, but that can be overwhelming for your mail system. A much better architecture would be to use SQS with SNS. You can find relevant documentation details here.

AWS
已回答 1 年前
  • Hi, I am trying to get email alerts for aws all resource changes and activity.

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则