A command line app to update your IP address to multiple security groups on AWS EC2
npm install -g aws-ip
A simple config file with the name config.json needs to be created which contains all the information required to access the security groups and put the relevant IP addresses and ports.
A sample config file -
{
"accessKeyId": "SDJFF9NIGNFOG09340MD",
"secretAccessKey": "bb2+KJIUjkif8934nfjke/sfefneurifneirn+sf",
"region": "ap-south-1",
"port": 22,
"ip": ["192.168.1.1", "122.162.228.18"],
"groupIds": ["sg-d2ebd6bb"]
}
After creating the config.json file, simply run this app providing the absolute path to the config file -
CONFIG=/home/username/config.json aws-ip
This will handle all the things from here and the security groups would be updated with the information provided.
Make sure the AWS credentials you provide, has the following permissions -
A sample policy could look like this -
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "Stmt1215115857555",
"Effect": "Allow",
"Action": [
"ec2:AuthorizeSecurityGroupIngress",
"ec2:DescribeSecurityGroups"
],
"Resource": [
"*"
]
}
]
}