如何使用 terraform 在 GCP VM 实例上启用 bigtable api(读取)
How to enable bigtable api (read) on a GCP VM instance using terraform
我正在使用 terraform 在 GCP 中配置 VM,我想启用 bigtable api - 阅读。
我正在使用下面的范围列表,但找不到
的范围
service_account = {
dev = {
email = "6xxxxx4-compute@developer.gserviceaccount.com"
scopes = ["userinfo-email", "compute-ro", "storage-ro", "logging-write", "trace"]
}
...
}
his link中的列表似乎不完整..
你是
的别名
“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 更新页面,请转到您链接的 url 末尾的反馈,您可以在那里通知他们。
我正在使用 terraform 在 GCP 中配置 VM,我想启用 bigtable api - 阅读。 我正在使用下面的范围列表,但找不到
的范围service_account = {
dev = {
email = "6xxxxx4-compute@developer.gserviceaccount.com"
scopes = ["userinfo-email", "compute-ro", "storage-ro", "logging-write", "trace"]
}
...
}
his link中的列表似乎不完整..
你是
的别名“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 更新页面,请转到您链接的 url 末尾的反馈,您可以在那里通知他们。