适用于 Google Cloud 的 Powershell:使用服务帐户进行身份验证

Joh*_*ite 0 powershell google-cloud-storage google-cloud-platform

我正在尝试构建一个使用 Google Cloud 存储桶来存储数据的自动同步解决方案。

当我安装云 SDK 时,它要求我进行身份验证,但显然我不想在客户端服务器上使用我的凭据,应该使用具有特定权限的服务帐户来完成,对吧?

该文档只是说使用您的凭据进行身份验证。这里的安全最佳实践是什么?

Joh*_*ite 5

找到了,就是这个简单的命令:

gcloud auth activate-service-account --key-file=credentials.json
Run Code Online (Sandbox Code Playgroud)

它有效!我可以使用 PowerShell 上传内容

医生在这里