fix variable

This commit is contained in:
Ludovico Magnocavallo 2022-02-10 19:13:55 +01:00
parent c4d36cc66b
commit 3246d1c08d
1 changed files with 5 additions and 1 deletions

View File

@ -31,9 +31,13 @@ variable "bootstrap_user" {
variable "custom_role_names" {
description = "Names of custom roles defined at the org level."
type = object({
organization_iam_admin = string
service_project_network_admin = string
})
default = {
organization_iam_admin = "organizationIamAdmin"
service_project_network_admin = "serviceProjectNetworkAdmin"
})
}
}
variable "groups" {