RQL query to check for any Change in role for Instance
I am trying to create an RQL query, which will check if anyone attaches or modify roles to an AWS instance.
I am using the below Query :
event where cloud.account = 'My-AWS' AND operation = 'AddRoleToInstanceProfile'I did some testing on one of th
...