I'm using aws cli's autoscaling to create EC2 instances. Despite only having two device mappings in my launch config, the resulting instances have an additional device. The pertinent map Json:
"BlockDeviceMappings": [
{
"DeviceName": "/dev/sda1",
"Ebs": {
"VolumeSize": 32,
"VolumeType": "gp2",
"DeleteOnTermination": true
}
},
{
"DeviceName": "/dev/sdb",
"Ebs": {
"VolumeSize": 64,
"VolumeType": "gp2",
"DeleteOnTermination": true
}
}
]
Unexpectedly, the the instances have three:
$ sudo lsblk | grep disk
xvda 202:0 0 32G 0 disk
xvdb 202:16 0 64G 0 disk
xvdc 202:32 0 37.5G 0 disk