This commit is contained in:
aissi
2025-12-04 11:01:15 +01:00
parent ed14be22c5
commit 0a7a83433f
3 changed files with 45 additions and 2 deletions

View File

@@ -0,0 +1,10 @@
output "service_account_email" {
description = "Service account email."
value = google_service_account.service_account.email
}
output "service_account_key" {
description = "Service account key."
sensitive = true
value = google_service_account_key.mykey.private_key
}