This commit is contained in:
SimonSayeBabu
2024-12-06 15:31:31 +01:00
parent ea72883bb8
commit 4b13756f44
4 changed files with 46 additions and 0 deletions

View File

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