Sriram Sanka

Databases | Cloud | Infrastructure | Security |

Posts Tagged ‘AWS’

Comprehensive Guide to AWS Services

Posted by Sriram Sanka on January 12, 2025

This post lists all the services AWS provides and supports today. In upcoming posts, we will explore more about these services.

Services by category

Quantum Technologies

Game Development

Posted in AWS, Cloud | Tagged: , , , , , | Leave a Comment »

AWS- EC2 : Error while changing the IP Address in EC2 Security Groups

Posted by Sriram Sanka on June 12, 2021

Error while changing the IP Address in EC2 Security Groups. This happened ,as the user does not have access to change the IP in SG Group 2,after adding the below rule (Underlined Part) resolved this error.

{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "VisualEditor0",
"Effect": "Allow",
"Action": [
"ec2:RevokeSecurityGroupIngress",
"ec2:AuthorizeSecurityGroupEgress",
"ec2:AuthorizeSecurityGroupIngress",
"ec2:RevokeSecurityGroupEgress",
"ec2:DeleteSecurityGroup"
],
"Resource": [
"arn:aws:ec2:::security-group/sg-Group1",
"arn:aws:ec2:::security-group/sg-Group2"
]
},
{
"Sid": "VisualEditor1",
"Effect": "Allow",
"Action": [
"ec2:DescribeSecurityGroupReferences",
"ec2:DescribeVpcs",
"ec2:DescribeSecurityGroups",
"ec2:DescribeStaleSecurityGroups"
],
"Resource": "*"
}
]
}

Posted in Uncategorized | Tagged: , , | Leave a Comment »