...
- From the *AWS console SNS* select the SNS Topic and click Edit
- Under the Access policy Add the following JSON to permit HyperGrid SQS to subscribe to SNS topic.
{
"Sid": "__console_sub_0",
"Effect": "Allow",
"Principal": {
"AWS": "*"
},
"Action": [
"SNS:Subscribe",
"SNS:Receive"
],
"Resource": "arn:aws:sns:us-east-1:<<CustomerAccountID>>:Customer-Config-Topic",
"Condition": {
"StringLike": {
"SNS:Endpoint": "arn:aws:sqs:us-west-2:<<HyperGridAccountID>>:HyperGrid-Config-Queue"
}
}
} - Notify the HyperGrid Support team to subscribe the HyperGrid SQS to the SNS topic created for AWS Config stream.
- Return to AWS config and ensure that the AWS config settings are configured to send notifications to this SNS topic config-topic
...