【以下的问题经过翻译处理】 我有一个无法分离或强制分离的EC2 EBS卷。
D:\repos> aws ec2 describe-volumes
{
"Volumes": [
{
"AvailabilityZone": "us-east-1b",
"Attachments": [],
"Encrypted": false,
"VolumeType": "standard",
"VolumeId": "vol-cd8365a4",
"State": "in-use",
"SnapshotId": "",
"CreateTime": "2009-03-17T23:20:21.000Z",
"Size": 20
}
]
}
我在us-east-1b中没有运行任何实例,所以它不能附加到任何东西。它无法分离或强制分离。
如果我尝试分离它,它会说该卷处于“正在使用中”。
D:\repos> aws ec2 delete-volume --volume-id vol-cd8365a4
An error occurred (IncorrectState) when calling the DeleteVolume operation: The volume 'vol-cd8365a4' is 'in-use'
D:\repos>
如果我尝试强制分离它,它会说该卷处于“可用状态”。
D:\repos> aws ec2 detach-volume --force --volume-id vol-cd8365a4
An error occurred (IncorrectState) when calling the DetachVolume operation: Volume 'vol-cd8365a4' is in the 'available' state.
D:\repos>
有没有办法删掉它?我正在被持续收取费用。