This commit is contained in:
aissi
2025-12-04 11:59:30 +01:00
parent e292f49d99
commit 20d1893b1f
3 changed files with 6 additions and 6 deletions

View File

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