当我按[1]将EBS卷添加到实例时,出现以下错误。
EC2-附着量 缺少必需选项'-K, - private-key KEY'(-h for usage)
[1] docs.aws.amazon.com/AWSEC2/latest/UserGuide/ebs-attaching-volume.html
答案 0 :(得分:1)
听起来像是缺少AWS密钥的环境变量。假设您使用的是Unix / Linux,请尝试:
export AWS_ACCESS_KEY_ID=<your user AWS access key>
export AWS_SECRET_ACCESS_KEY=<your user AWS secret access key>
希望它有所帮助。