| name | cis-aws-storage-2.13 |
| description | Ensure creating an SNS subscription |
| category | cis-storage-services |
| version | 1.0.0 |
| author | cyberstrike-official |
| tags | ["cis","aws","storage","sns","alerting","notification","monitoring","incident-response"] |
| cis_id | 2.13 |
| cis_benchmark | CIS AWS Storage Services Benchmark v1.0.0 |
| tech_stack | ["aws"] |
| cwe_ids | [] |
| chains_with | ["cis-aws-storage-2.12"] |
| prerequisites | ["cis-aws-storage-2.12"] |
| severity_boost | {} |
CIS Control 2.13: Ensure creating an SNS subscription (Manual)
Profile Applicability
Description
SNS (Simple Notification Service) subscriptions enable real-time alerts and notifications for AWS CloudWatch alarms and events, ensuring administrators are immediately informed of critical issues with EC2 instances and EBS volumes.
Rationale
Creating SNS subscriptions is essential for timely incident response and proactive monitoring. By receiving immediate notifications about CloudWatch alarms, administrators can quickly address performance issues, security events, or resource failures before they impact operations.
Impact
Without SNS subscriptions, CloudWatch alarms may go unnoticed, leading to delayed incident response, prolonged downtime, and potential data loss. Real-time notifications ensure that critical issues are addressed promptly, minimizing operational disruptions and maintaining service availability.
Audit Procedure
Via AWS Management Console
- Navigate to SNS → Subscriptions
- Verify subscriptions exist for critical CloudWatch alarms
- Confirm subscription endpoints (email, SMS, Lambda) are active
- Test notification delivery
Via AWS CLI
```bash
List SNS topics
aws sns list-topics
List subscriptions
aws sns list-subscriptions
Get topic attributes
aws sns get-topic-attributes --topic-arn <TOPIC_ARN>
List subscriptions for specific topic
aws sns list-subscriptions-by-topic --topic-arn <TOPIC_ARN>
```
Expected Result
- SNS topics exist for critical alarm categories
- Subscriptions are configured for appropriate notification channels
- Subscription endpoints are confirmed and active
- Test notifications are successfully delivered
Remediation
Via AWS Management Console
- Navigate to SNS → Create Topic
- Provide topic name and display name
- Create subscription to the topic
- Choose protocol (Email, SMS, HTTPS, Lambda, SQS)
- Enter endpoint details
- Confirm subscription
- Link topic to CloudWatch alarms
Via AWS CLI
```bash
Create SNS topic
aws sns create-topic --name CloudWatchAlerts
Create email subscription
aws sns subscribe
--topic-arn arn:aws:sns:region:account:CloudWatchAlerts
--protocol email
--notification-endpoint