Guided Walkthroughs
Step-by-step configuration wizards for your environment
Dedicated Security Account
AWS Backup Strategy
VPC Connectivity Setup
Automated Patching
All Guides
A Config rule that checks whether security groups in use do not allow restricted incoming SSH traffic. This rule applies only to IPv4.
AWSTemplateFormatVersion: "2010-09-09"
Description: ""
Resources:
ConfigRule:
Type: "AWS::Config::ConfigRule"
Properties:
ConfigRuleName: "restricted-ssh"
Scope:
ComplianceResourceTypes:
- "AWS::EC2::SecurityGroup"
Description: "A Config rule that checks whether security groups in use do not allow restricted incoming SSH traffic. This rule applies only to IPv4."
Source:
Owner: "AWS"
SourceIdentifier: "INCOMING_SSH_DISABLED"
Parameters: {}
Metadata: {}
Conditions: {}