我正在使用 terraform 在 GCP 中配置虚拟机,并且我想启用 bigtable api - 读取。 我正在使用下面的范围列表,但找不到
的范围service_account = {
dev = {
email = "6xxxxx4-compute@developer.gserviceaccount.com"
scopes = ["userinfo-email", "compute-ro", "storage-ro", "logging-write", "trace"]
}
...
}
his link 中的列表似乎不完整..
答案 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 更新页面,请转到您链接的网址末尾的反馈,您可以在那里通知他们。