This commit is contained in:
2025-12-04 09:47:03 +01:00
parent 9c1aa38d3c
commit 5ad8bc404e
4 changed files with 50 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
output "service_account_email" {
description = "Email du compte de service Terraform"
value = google_service_account.terraform_sa.email
}
output "service_account_key" {
description = "Clé privée du compte de service Terraform"
value = google_service_account_key.terraform_sa_key.private_key
sensitive = true
}