以编程方式获取 GCP 上的当前服务帐户

Programmatically get current Service Account on GCP

当没有设置 GOOGLE_APPLICATION_CREDENTIALS 时,有没有办法以编程方式访问 GCP 实例上当前使用的服务帐户的电子邮件?(即,当使用默认服务帐户)

我查看了 GCP 文档,但是 only resource I found can't be used with the default Service Account when no GOOGLE_APPLICATION_CREDENTIALS is set. I know that it is possible to do so using gcloud (see or documentation), however these solutions aren't applicable when running on a ContainerOptimisedOS。我已经与 GCP 支持团队来回交流了几周,但他们最终无法帮助我,并将我重定向到 Whosebug 寻求帮助。

John 的解决方案适用于任何语言,无需任何外部库。但是,它仅适用于部署了元数据服务器的 Google 云环境。您无法在您的计算机上执行此测试。

我建议仅使用一段 Python 代码(使用 Google OAuth 库,但它可以在具有此库的其他语言中使用)向库询问当前凭据。如果凭据是服务帐户(来自您计算机上的 GOOGLE_APPLICATION_CREDENTIALS、ADC(应用程序默认凭据)或来自元数据服务器),您会打印电子邮件,否则,您会收到警告消息,因为您使用的是您的用户帐户凭据

    import google.auth

    credentials, project_id = google.auth.default()

    if hasattr(credentials, "service_account_email"):
      print(credentials.service_account_email)
    else:
        print("WARNING: no service account credential. User account credential?")

请注意,如果使用默认服务帐户,此方法将打印 default 而不是整个电子邮件地址。


编辑 1

    ctx := context.Background()
    credential,err := google.FindDefaultCredentials(ctx)
    content := map[string]interface{}{}

    json.Unmarshal(credential.JSON,&content)
    if content["client_email"] != nil {
      fmt.Println(content["client_email"])
    } else {
      fmt.Println("WARNING: no service account credential. User account credential?")
    }