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

11 lines
286 B
Terraform
Raw Normal View History

2025-12-04 10:07:08 +00:00
output "service_account_email" {
2025-12-04 11:16:29 +01:00
description = "Service account email."
value = google_service_account.service_account.email
2025-12-04 10:07:08 +00:00
}
output "service_account_key" {
2025-12-04 11:16:29 +01:00
description = "Service account key."
2025-12-04 10:07:08 +00:00
sensitive = true
2025-12-04 11:16:29 +01:00
value = google_service_account_key.mykey.private_key
}