Files

10 lines
267 B
Terraform
Raw Permalink Normal View History

2025-12-04 11:11:46 +01:00
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
}