Overview
Netskope One DSPM supports sending notifications via AWS SNS, either within the same AWS account or between different AWS accounts. This requires granting additional permissions to the Netskope One DSPM-specific service account in AWS. Please follow the steps below to create the necessary configurations within the AWS console.
Configure AWS SNS Topic
If you have an existing AWS SNS Topic you wish to receive notifications, copy its ARN value to your clipboard, for use in the next section. Otherwise, follow these instructions to setup a new Netskope One DSPM-specific AWS SNS Topic.
- Click this link to log into your AWS SNS Console, which will navigate you to Simple Message Service.
- Under Dashboard in the left-hand menu, navigate to Topics
- Click the Create Topic button
- On the next screen, complete the following fields:
- Name
- Display Name
- Click the Save button
Once the save is complete, copy the generated ARN value to your clipboard, for use in the next section.
Configure the AWS IAM Policy & Role
Netskope One DSPM will require permission to publish to your desired AWS SNS Topic. This configuring a Netskope One DSPM-specific IAM Policy and IAM Role, the latter of which will eventually be assigned to the Netskope One DSPM-dedicated AWS user.
Configure Policy
- Click this link to log into your AWS IAM Console, which will navigate you to IAM.
- Under Dashboard in the left-hand menu, navigate to Policies
- Click the Create Policy button
- Click the JSON tab
- Copy the following JSON and paste into the AWS IAM console:
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": "sns:Publish",
"Resource": "arn:aws:sns:<region>:<account>:<Netskope One DSPM Radar_topic>"
},
]
}
- Edit the Resource value to substitute your AWS SNS Topic’s ARN (as copied earlier in the prior section).
- Configure the remainder of the AWS IAM Policy as desired (Tags, etc.).
- Click the Save button.
Configure Role
- Under Dashboard in the left-hand menu, navigate to Roles.
- Click the Create Role button.
- The Step 1: Select Trusted Entity screen is displayed.
- Complete the following values:
- Trusted Entity Type: AWS Service
-
Use Case: EC2
- Click the Next button.
- The Add Permissions screen is displayed.
- Search for the AWS IAM Policy you created earlier.
- Click the Next button.
- The Name, Review, and Create screen is displayed.
- Complete the following values:
- Role Name: any value, but it is recommended you include the name “Netskope One DSPM” (ex: Netskope One DSPMSNSServiceRole)
- Tags (optional)
- Click the Create Role button
Configure the AWS Service Account
- Click this link to log into your AWS IAM Console, which will navigate you to IAM.
- Under Access Management in the left-hand menu, navigate to Users.
- Under the Users list, find the Netskope One DSPM-dedicated service account and click its name hyperlink.
- The User Summary is displayed.
- Under the Permissions tab, click the Add Permissions button.
- Search for & include Role Name created in the Configure Role section above.
- Click the Save button.