rename iam variable in source repo module

This commit is contained in:
Ludovico Magnocavallo
2020-11-05 08:58:05 +01:00
parent 7e96e899d5
commit 462a7023cd
7 changed files with 114 additions and 8 deletions

View File

@@ -19,13 +19,13 @@ variable "project_id" {
type = string
}
variable "iam_members" {
description = "IAM members for each topic role."
type = map(set(string))
variable "iam" {
description = "IAM bindings in {ROLE => [MEMBERS]} format."
type = map(list(string))
default = {}
}
variable "name" {
description = "Repository topic name."
description = "Repository name."
type = string
}