Anshu Dutta
Anshu Dutta

Reputation: 491

AWS Iot Rule not getting triggered using MQTT browser client

I have a SNS topic and subscriber set up like so :

enter image description here

The subscribers are correctly notified when the Topic is tested via "Publish to Topic" from AWS console

I have a IoT rule like so :

enter image description here

I have a policy attached to the rule like so :

{
"Version": "2012-10-17",
"Statement": {
    "Effect": "Allow",
    "Action": "sns:Publish",
    "Resource": "arn:aws:sns:ap-southeast-xxxxxx:MySNSTopic"
}

}

Yet when I try and test from the MQTT browser client, the notification is not fired

enter image description here What am I missing?

Upvotes: 1

Views: 516

Answers (1)

Anshu Dutta
Anshu Dutta

Reputation: 491

Started working after a few minutes. Guess it needs some time to set up

Upvotes: 1

Related Questions