无法将 Google CDN 服务帐户提供给存储桶
Cannot give Google CDN service account to Bucket
我正在尝试授予 Google CDN 服务帐户访问我的存储桶的权限,如下所述:https://cloud.google.com/cdn/docs/using-signed-urls
gsutil iam ch serviceAccount:service-{PROJECT_NUMBER}@cloud-cdn-fill.iam.gserviceaccount.com:objectViewer gs://{BUCKET}
但响应是:
BadRequestException: 400 Invalid argument
通过云控制台添加它也是不可能的,它说 "Email addresses and domains must be associated with an active Google Account or Google Apps account."
我是不是遗漏了什么或者这是一个错误?
云 CDN 缓存填充服务帐户是在您启用签名 URL 时创建的。该错误消息表明项目编号存在问题,或者您尚未为该项目启用签名 URL。您可以按照 https://cloud.google.com/cdn/docs/using-signed-urls#creatingkeys 中的说明启用签名 URL。请确保在您在 gsutil 命令中指定的同一项目中为后端服务或后端存储桶启用签名 URL。
我正在尝试授予 Google CDN 服务帐户访问我的存储桶的权限,如下所述:https://cloud.google.com/cdn/docs/using-signed-urls
gsutil iam ch serviceAccount:service-{PROJECT_NUMBER}@cloud-cdn-fill.iam.gserviceaccount.com:objectViewer gs://{BUCKET}
但响应是:
BadRequestException: 400 Invalid argument
通过云控制台添加它也是不可能的,它说 "Email addresses and domains must be associated with an active Google Account or Google Apps account."
我是不是遗漏了什么或者这是一个错误?
云 CDN 缓存填充服务帐户是在您启用签名 URL 时创建的。该错误消息表明项目编号存在问题,或者您尚未为该项目启用签名 URL。您可以按照 https://cloud.google.com/cdn/docs/using-signed-urls#creatingkeys 中的说明启用签名 URL。请确保在您在 gsutil 命令中指定的同一项目中为后端服务或后端存储桶启用签名 URL。