Advertisement
metalni

AWS Fleet Provisioning Policy

Jul 28th, 2022
293
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. {
  2. "Version": "2012-10-17",
  3. "Statement": [
  4. {
  5. "Effect": "Allow",
  6. "Action": ["iot:Connect"],
  7. "Resource": "*"
  8. },
  9. {
  10. "Effect": "Allow",
  11. "Action": ["iot:Publish","iot:Receive"],
  12. "Resource": [
  13. "arn:aws:iot:aws-region:aws-account-id:topic/$aws/certificates/create/*",
  14. "arn:aws:iot:aws-region:aws-account-id:topic/$aws/provisioning-templates/templateName/provision/*"
  15. ]
  16. },
  17. {
  18. "Effect": "Allow",
  19. "Action": "iot:Subscribe",
  20. "Resource": [
  21. "arn:aws:iot:aws-region:aws-account-id:topicfilter/$aws/certificates/create/*",
  22. "arn:aws:iot:aws-region:aws-account-id:topicfilter/$aws/provisioning-templates/templateName/provision/*"
  23. ]
  24. }
  25. ]
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement