Files
but3-iac/terraform/modules/iam/outputs.tf
2025-12-04 11:10:32 +01:00

10 lines
269 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_key.mykey.private_key
}