Unused aws security groups
Easily identify and delete unused AWS security groups to clean and secure your cloud infrastructure
Connect to your AWS account
Loading...
💡 For Security reasons, we do not store AWS credentials in our database.
Generate AWS "Read Only" Keys
1. Log in to aws console
2. Go to IAM
3. Click on Polices
4. Click on Create policy
5. Choose JSON and write this script below and click "Next"
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": "sts:AssumeRole",
"Resource": "*"
},
{
"Effect": "Allow",
"Action": [
"ec2:DescribeSecurityGroups",
"ec2:DescribeInstances",
"rds:DescribeDBInstances",
"elasticache:DescribeCacheClusters"
],
"Resource": "*"
}
]
}