Files
but3-iac/terraform/modules/iam/variables.tf

35 lines
761 B
Terraform
Raw Normal View History

2025-12-04 10:37:24 +01:00
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)
}