1
0
forked from pierront/but3-iac
Files
but3-iac-dick/terraform/modules/iam/outputs.tf
2025-12-04 10:21:50 +01:00

11 lines
290 B
HCL

output "service_account_email" {
description = "Service account email"
value = google_service_account.terraform_sa.email
}
output "service_account_key" {
description = "Service key"
value = google_service_account_key.terraform_sa_key.private_key
sensitive = true
}