EBS Optimization is not enabled for EC2 instances. Ensure to enable EBS Optimization.
1Resources:
2  ExampleEC2:
3    Type: AWS::EC2::Instance
4    Properties:
5      ImageId: !Ref LatestAmiId
6      InstanceType: !Ref pInstanceType
7      # Noncompliant: `EbsOptimized` is set to `false`.
8      EbsOptimized: false1Resources:
2  ExampleEC2:
3    Type: AWS::EC2::Instance
4    Properties:
5      ImageId: !Ref LatestAmiId
6      InstanceType: !Ref pInstanceType
7      # Compliant: `EbsOptimized` is set to `true`.
8      EbsOptimized: true