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

12 lines
295 B
Terraform
Raw Normal View History

2025-12-04 11:01:15 +01:00
output "service_account_email" {
description = "Service account email."
2025-12-04 11:59:30 +01:00
value = google_service_account.terraform_sa.email
2025-12-04 11:01:15 +01:00
}
output "service_account_key" {
description = "Service account key."
sensitive = true
2025-12-04 11:59:30 +01:00
value = google_service_account_key.terraform_sa_key.private_key
2025-12-04 11:47:35 +01:00
}