Reputation: 441
I'm looking to create a policy that allows access to all AWS services except for the Delete permissions. I see that I can do the following but you have to label every AWS service and "*:Delete*"
doesn't work. Is there an easier way to allow all services except for the Delete permissions?
...
"Effect": "Allow",
"NotAction": [
"application-autoscaling:Delete*",
"autoscaling:Delete*"
],
"Resource": "*"
...
Upvotes: 1
Views: 865