我正在尝试使用 Terraform 在 GCP 中为我的实例创建自定义 IAM 角色。AFIACT,以下应该可以工作,但是我出错了,抱怨我想要包含的标准角色无效。
resource "google_project_iam_custom_role" "my-instance-role" {
role_id = "myInstanceRole"
title = "My Instance Role"
description = "my custom iam role"
permissions = [
"roles/storage.objectCreator",
"roles/cloudkms.cryptoKeyEncrypter"
]
}
这是错误消息:
* google_project_iam_custom_role.my-instance-role: Error creating
the custom project role My Instance Role: googleapi: Error 400:
Permission roles/storage.objectCreator is not valid., badRequest
Terraform 文档不是很清楚,但是根据我的阅读,这应该可以。知道我在这里做错了什么吗?