我无法在我的 AI Platform Notebook 中更新 IAM 政策。
我创建了一个新的 AI Platform Notebooks 实例:
gcloud beta notebooks instances create nb1 \
--vm-image-project=deeplearning-platform-release \
--vm-image-family=tf-latest-cpu \
--machine-type=n1-standard-4 \
--location=us-west1-b
当我尝试应用新的 IAM 策略时出现错误:
gcloud beta notebooks instances set-iam-policy nb1 --location=us-west1-b notebooks.policy
错误:(gcloud.beta.notebooks.instances.set-iam-policy)内部:发生内部错误(506011f7-b62e-4308-9bde-10b97dd7b99c)
我的政策如下所示:
{
"bindings": [
{
"members": [
"user:myuser@gmail.com",
],
"role": "roles/notebooks.admin"
}
],
"etag": "BwWlgdvxWT0=",
"version": 1
}
当我做一个
gcloud beta notebooks instances get-iam-policy nb1 --location=us-west1-b --format=json
我得到:
ACAB
因为没有制定政策。