BOM - AWS EBS
- Query id: 0b0556ea-9cd9-476f-862e-20679dda752b
- Query name: BOM - AWS EBS
- Platform: CloudFormation
- Severity: Trace
- Category: Bill Of Materials
- URL: Github
Description¶
A list of EBS resources found. Amazon Elastic Block Store (Amazon EBS) is an easy-to-use, scalable, high-performance block-storage service designed for Amazon Elastic Compute Cloud (Amazon EC2).
Documentation
Code samples¶
Code samples with security vulnerabilities¶
Postitive test num. 1 - yaml file
AWSTemplateFormatVersion: "2010-09-09"
Description: "Volume"
Resources:
NewVolume:
Type: AWS::EC2::Volume
Properties:
Size: 100
Encrypted: true
AvailabilityZone: !GetAtt Ec2Instance.AvailabilityZone
Tags:
- Key: MyTag
Value: TagValue
DeletionPolicy: Snapshot
Postitive test num. 2 - json file
{
"AWSTemplateFormatVersion": "2010-09-09",
"Description": "Volume",
"Resources": {
"NewVolume": {
"Type": "AWS::EC2::Volume",
"Properties": {
"Encrypted": true,
"AvailabilityZone": "Ec2Instance.AvailabilityZone",
"Tags": [
{
"Key": "MyTag",
"Value": "TagValue"
}
],
"Size": 100
},
"DeletionPolicy": "Snapshot"
}
}
}
Postitive test num. 3 - yaml file
AWSTemplateFormatVersion: "2010-09-09"
Description: "Volume"
Resources:
NewVolume:
Type: AWS::EC2::Volume
Properties:
Size: 100
Encrypted: false
AvailabilityZone: !GetAtt Ec2Instance.AvailabilityZone
Tags:
- Key: Name
Value: NewVolume
DeletionPolicy: Snapshot
Postitive test num. 4 - json file
{
"AWSTemplateFormatVersion": "2010-09-09",
"Description": "Volume",
"Resources": {
"NewVolume": {
"Type": "AWS::EC2::Volume",
"Properties": {
"Encrypted": false,
"AvailabilityZone": "Ec2Instance.AvailabilityZone",
"Tags": [
{
"Key": "Name",
"Value": "NewVolume"
}
],
"Size": 100
},
"DeletionPolicy": "Snapshot"
}
}
}