feat: iam module

This commit is contained in:
2025-12-04 09:51:23 +01:00
parent f0cdaf15f0
commit 58eee8b122
4 changed files with 41 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
output "service_account_email" {
description = "Email du Service Account"
value = google_service_account.terraform.email
}
output "service_account_key" {
description = "Clé privée du Service Account"
value = google_service_account_key.terraform_key.private_key
sensitive = true
}