rename iam additive variable in project module

This commit is contained in:
Ludovico Magnocavallo
2020-11-04 16:17:12 +01:00
parent d2c84de8ff
commit d0ed3b7614
5 changed files with 7 additions and 7 deletions

View File

@@ -21,7 +21,7 @@ module "test" {
auto_create_network = var.auto_create_network
custom_roles = var.custom_roles
iam_members = var.iam_members
iam_additive_bindings = var.iam_additive_bindings
iam_additive = var.iam_additive
labels = var.labels
lien_reason = var.lien_reason
oslogin = var.oslogin

View File

@@ -29,7 +29,7 @@ variable "iam_members" {
default = {}
}
variable "iam_additive_bindings" {
variable "iam_additive" {
type = map(list(string))
default = {}
}