fix/feature: fix compute & add iam

This commit is contained in:
2025-12-04 11:11:46 +01:00
parent 86b4b09e4d
commit 3f837977bf
4 changed files with 46 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
}