This commit is contained in:
gallego
2025-12-04 10:07:08 +00:00
parent e67b5bf03c
commit 47814729f3
27 changed files with 2158 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
############################################
# 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
}
############################################
# 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
sensitive = true
}