This commit is contained in:
2025-12-04 11:16:29 +01:00
parent 47814729f3
commit b81682e58e
12 changed files with 176 additions and 296 deletions

View File

@@ -1,18 +1,11 @@
############################################
# 1. EMAIL DU COMPTE DE SERVICE
############################################
output "service_account_email" {
description = "Email du service account utilisé par Terraform."
value = google_service_account.terraform_sa.email
description = "Service account email."
value = google_service_account.service_account.email
}
############################################
# 2. CLÉ DU COMPTE DE SERVICE
############################################
output "service_account_key" {
description = "Clé privée du service account (JSON)."
value = google_service_account_key.terraform_sa_key.private_key
description = "Service account key."
sensitive = true
}
value = google_service_account_key.mykey.private_key
}