rename iam variables in gcs module

This commit is contained in:
Ludovico Magnocavallo
2020-11-04 16:57:06 +01:00
parent bf23199724
commit 9d0db19c5e
6 changed files with 13 additions and 14 deletions

View File

@@ -26,9 +26,9 @@ variable "force_destroy" {
default = false
}
variable "iam_members" {
description = "IAM members keyed by bucket name and role."
type = map(set(string))
variable "iam" {
description = "IAM bindings in {ROLE => [MEMBERS]} format."
type = map(list(string))
default = {}
}