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

10 lines
269 B
Terraform
Raw Normal View History

2025-12-04 09:58:02 +01:00
output "service_account_email"{
description = "Service account email"
2025-12-04 11:10:32 +01:00
value = google_service_account.myaccount.email
2025-12-04 09:58:02 +01:00
}
output "service_account_key"{
description = "Service key"
sensitive = true
2025-12-04 11:10:32 +01:00
value = google_service_account_key.mykey.private_key
2025-12-04 09:58:02 +01:00
}