Files
but3-iac/terraform/modules/iam/outputs.tf
2025-12-04 09:58:02 +01:00

10 lines
265 B
HCL

output "service_account_email"{
description = "Service account email"
value = google.service.account.myaccount.email
}
output "service_account_key"{
description = "Service key"
sensitive = true
value = google.service.account.mykey.private_key
}