rename iam variable in compute vm module

This commit is contained in:
Ludovico Magnocavallo
2020-11-05 09:10:49 +01:00
parent 462a7023cd
commit 44f1828c33
7 changed files with 12 additions and 13 deletions

View File

@@ -90,9 +90,9 @@ variable "hostname" {
default = null
}
variable "iam_members" {
description = "Map of member lists used to set authoritative bindings, keyed by role. Ignored for template use."
type = map(set(string))
variable "iam" {
description = "IAM bindings in {ROLE => [MEMBERS]} format."
type = map(list(string))
default = {}
}