我正在尝试使用gcloud在GCP上为服务帐户创建密钥文件
gcloud iam service-accounts keys create ~/.config/gcloud/key.json \
--iam-account terraform@$myproject.iam.gserviceaccount.com
不幸的是,它会回应
(gcloud) Unable to create private file [~/.config/gcloud/key.json]: [Errno 2] No such file or directory: '~/.config/gcloud/key.json'
文件夹
'~/.config/gcloud/'
存在。
答案 0 :(得分:2)
问题是:
'~/.config/gcloud/'
应该是
'/home/mike/.config/gcloud/'
正如约翰·汉利正确指出的那样。