I opened a ticket to support, but I figured I'd ask here.
Has anyone been able to hook a watcher webhook up to SNS? I tried to figure out how to give an instance a policy to mitigate the need for signing the request, but I came up empty.
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "1",
"Effect": "Allow",
"Action": [
"sns:*"
],
"Resource": "arn:aws:sns:us-east-1:SNSTOPIC",
"Condition": {
"IpAddress": {
"AWS:SourceIp": "INSTANCEIP"
}
}
}
]
}