forked from pierront/but3-iac
35 lines
761 B
HCL
35 lines
761 B
HCL
variable "project_id" {
|
|
description = "ID du projet GCP"
|
|
type = string
|
|
}
|
|
|
|
variable "service_account_id" {
|
|
description = "Identifiant du service account (ex: my-sa)"
|
|
type = string
|
|
}
|
|
|
|
variable "service_account_display_name" {
|
|
description = "Nom affiché du service account"
|
|
type = string
|
|
}
|
|
|
|
variable "custom_role_id" {
|
|
description = "ID du rôle personnalisé"
|
|
type = string
|
|
}
|
|
|
|
variable "custom_role_title" {
|
|
description = "Titre du rôle personnalisé"
|
|
type = string
|
|
}
|
|
|
|
variable "custom_role_description" {
|
|
description = "Description du rôle personnalisé"
|
|
type = string
|
|
}
|
|
|
|
variable "custom_role_permissions" {
|
|
description = "Permissions du rôle personnalisé"
|
|
type = list(string)
|
|
}
|