This commit is contained in:
2025-12-04 09:47:06 +01:00
parent be4001f6c0
commit ce8052be22

View File

@@ -7,8 +7,9 @@ output "email" {
value = google_service_account.service_account.email
}
# 2. Clé du compte de service
output "key" {
description = "Service account key."
description = "Service account private key (base64)."
sensitive = true
value = google_service_account.service_account.key
value = google_service_account_key.service_account_key.private_key
}