AWS IAM Policy for EC2 VPC and Subnet Management
This snippet defines an AWS IAM policy that allows the actions related to managing VPCs and subnets in EC2.{ "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Action": [ "ec2:CreateVpc", "ec2:DeleteVpc", "ec2:DescribeVpcs", "ec2:CreateSubnet", "ec2:DeleteSubnet", "ec2:ModifyVpcAttribute", "ec2:DescribeSubnets", "ec2:ModifySubnetAttribute" ], "Resource": "*" } ] }
Leave a Comment