Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Reverted from v. 1

...

  1. From the *AWS console  SNS*  select the SNS Topic and click Edit
  2. 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"
    }
    }
    }


  3. Notify the HyperGrid Support team to subscribe the HyperGrid SQS to the SNS topic created for AWS Config stream.
  4. Return to AWS config and ensure that the AWS config settings are configured to send notifications to this SNS topic config-topic

...