You must be logged in to view saved presets
An IAM policy that allows listing information for all EC2 objects and launching EC2 instances in a specific subnet. This policy also provides the permissions necessary to complete this action on the console.
{
"Version": "2012-10-17",
"Statement": [
{
"Action": [
"ec2:Describe*",
"ec2:GetConsole*"
],
"Resource": "*",
"Effect": "Allow"
},
{
"Action": [
"ec2:RunInstances"
],
"Resource": [
"arn:aws:ec2:::subnet/",
"arn:aws:ec2:::network-interface/*",
"arn:aws:ec2:::instance/*",
"arn:aws:ec2:::volume/*",
"arn:aws:ec2:::image/ami-*",
"arn:aws:ec2:::key-pair/*",
"arn:aws:ec2:::security-group/*"
],
"Effect": "Allow"
}
]
}