GCP 工作负载身份池的位置参数是什么

What is the location argument of GCP workload identity pools

根据 documentation:

创建身份池的示例是

gcloud iam workload-identity-pools create my-workload-identity-pool --location="global" --display-name="My workload pool" --description="My workload pool description" --disabled

location global 是什么意思?这个论点的目的是什么?它显然不是像 us-central1 这样的位置,而是一个合乎逻辑的位置。

哪些值可用?我没有找到关于此的任何好的文档,所以我在问。

您提到的 gcloud iam workload-identity-pools create 命令最终调用 API 方法 projects.locations.workloadIdentityPools.create which states that the only supported location is global. This makes sense since workload-identity-pools is a feature of the IAM (Identity and Access Management) service, which is a global product 跨区域复制。

现在,为什么在 gcloud 命令中需要这个参数,而在相应的 Cloud Console form 中甚至没有询问,这似乎是一个设计决定,但无论如何唯一的选择确实是 global.