Skip to content

Instantly share code, notes, and snippets.

@dpjanes
Last active March 26, 2016 16:30
Show Gist options
  • Save dpjanes/c884baa64b52c3b74f22 to your computer and use it in GitHub Desktop.
Save dpjanes/c884baa64b52c3b74f22 to your computer and use it in GitHub Desktop.
This one works
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"iot:Connect"
],
"Resource": [
"*"
]
},
{
"Effect": "Allow",
"Action": [
"iot:Publish"
],
"Resource": [
"arn:aws:iot:us-east-1:123456789012:topic/my_org/my_grp/my_scope"
]
},
{
"Effect": "Allow",
"Action": [
"iot:Subscribe",
"iot:Receive"
],
"Resource": [
"arn:aws:iot:us-east-1:123456789012:topic/my_org/my_grp/my_scope",
"arn:aws:iot:us-east-1:123456789012:topicfilter/my_org/my_grp/my_scope/*"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment