Files
but3-iac/terraform/modules/iam/outputs.tf

10 lines
205 B
Terraform
Raw Normal View History

2025-12-04 09:36:49 +00:00
output "service_account_email" {
value = google_service_account.terraform.email
}
output "service_account_key" {
value = google_service_account_key.terraform_key.private_key
sensitive = true
}