无法使用gcloud为iam帐户GCP创建密钥文件

时间:2019-03-01 15:56:02

标签: google-cloud-platform gcloud google-iam

我正在尝试使用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/'

存在。

1 个答案:

答案 0 :(得分:2)

问题是:

'~/.config/gcloud/'

应该是

'/home/mike/.config/gcloud/'

正如约翰·汉利正确指出的那样。