How to find all the used security groups attached with all the aws resources using Boto?
Currently the following script which is giving only ec2 instances-
sec_grps = ec2_conn.get_all_security_groups()
for group in sec_grps:
print group, " Instances attached ", group.instances()
Is there any way to get all security groups which are unused by all aws resources?