Remove iam_roles from net-vpc

This commit is contained in:
Julio Castillo
2020-10-30 19:19:40 +01:00
parent 405a3c23d5
commit c75230adf3
6 changed files with 15 additions and 35 deletions

View File

@@ -19,7 +19,6 @@ module "test" {
project_id = var.project_id
name = var.name
iam_members = var.iam_members
iam_roles = var.iam_roles
log_configs = var.log_configs
log_config_defaults = var.log_config_defaults
peering_config = var.peering_config

View File

@@ -29,13 +29,8 @@ variable "auto_create_subnetworks" {
default = false
}
variable "iam_roles" {
type = map(list(string))
default = null
}
variable "iam_members" {
type = map(map(list(string)))
type = map(map(set(string)))
default = null
}