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

10 lines
221 B
Terraform
Raw Normal View History

2025-12-03 16:12:20 +00:00
output "service_account_email" {
2025-12-04 10:13:59 +01:00
value = google_service_account.terraform_sa.email
2025-12-03 16:12:20 +00:00
}
output "service_account_key" {
2025-12-04 10:13:59 +01:00
value = google_service_account_key.terraform_sa_key.private_key
sensitive = true
2025-12-03 16:12:20 +00:00
}