Advertisement
Guest User

Untitled

a guest
Jan 24th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. {
  2. "Statement" : [
  3. {
  4. "Effect" : "Deny",
  5. "Action" : "Update:*",
  6. "Principal": "*",
  7. "Resource" : "LogicalResourceId/ProductionDatabase"
  8. },
  9. {
  10. "Effect" : "Allow",
  11. "Action" : "Update:*",
  12. "Principal": "*",
  13. "Resource" : "*"
  14. }
  15. ]
  16. }
  17.  
  18. "Condition" : "CreateProdResources"
  19.  
  20. {
  21. "Statement" : [
  22. {
  23. "Effect" : "Deny",
  24. "Principal" : "*",
  25. "Action" : "Update:*",
  26. "Resource" : "*",
  27. "Condition" : {
  28. "StringEquals" : {
  29. "ResourceType" : ["AWS::EC2::Instance", "AWS::RDS::DBInstance"]
  30. }
  31. }
  32. },
  33. {
  34. "Effect" : "Allow",
  35. "Principal" : "*",
  36. "Action" : "Update:*",
  37. "Resource" : "*"
  38. }
  39. ]
  40. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement