Open ActionScripted opened 8 years ago
@ActionScripted might not be the same in your case, but I had similar problem and traced it back to the permissions which the user I was running as. I had to add the create tags permission.
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"ec2:Describe*",
"ec2:CreateSnapshot",
"ec2:DeleteSnapshot",
"ec2:CreateTags"
],
"Resource": "*"
}
]
}
When I run the following command:
The output is:
The snapshot is created but there aren't any tags applied to it, it isn't named, etc. Under tags it's just empty.
AWS CLI version:
Screenshot in case that's in any way helpful: