This commit is contained in:
dubreuil
2025-12-04 11:08:11 +00:00
parent e67b5bf03c
commit 2a74663e38
26 changed files with 3305 additions and 0 deletions

View File

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