如何使用 terraform 在 GCP VM 实例上启用 bigtable api(读取)

时间:2021-07-05 15:13:27

标签: google-cloud-platform terraform terraform-provider-gcp

我正在使用 terraform 在 GCP 中配置虚拟机,并且我想启用 bigtable api - 读取。 我正在使用下面的范围列表,但找不到

的范围

enter image description here

service_account = {
  dev = {
    email  = "6xxxxx4-compute@developer.gserviceaccount.com"
    scopes = ["userinfo-email", "compute-ro", "storage-ro", "logging-write", "trace"]
  }
...
}

his link 中的列表似乎不完整..

1 个答案:

答案 0 :(得分:2)

你是正确的别名

缺少“https://www.googleapis.com/auth/bigtable.data.readonly”。

作为一种解决方法,这也有效

  service_account {
    email  = "xxxxxxxxx@xxxxxx.iam.gserviceaccount.com"
    scopes = ["https://www.googleapis.com/auth/bigtable.data.readonly"]
  }

要让 Google 更新页面,请转到您链接的网址末尾的反馈,您可以在那里通知他们。