forked from pierront/but3-iac
test
This commit is contained in:
@@ -1,18 +1,11 @@
|
||||
############################################
|
||||
# 1. EMAIL DU COMPTE DE SERVICE
|
||||
############################################
|
||||
|
||||
output "service_account_email" {
|
||||
description = "Email du service account utilisé par Terraform."
|
||||
value = google_service_account.terraform_sa.email
|
||||
description = "Service account email."
|
||||
value = google_service_account.service_account.email
|
||||
}
|
||||
|
||||
############################################
|
||||
# 2. CLÉ DU COMPTE DE SERVICE
|
||||
############################################
|
||||
|
||||
output "service_account_key" {
|
||||
description = "Clé privée du service account (JSON)."
|
||||
value = google_service_account_key.terraform_sa_key.private_key
|
||||
description = "Service account key."
|
||||
sensitive = true
|
||||
}
|
||||
value = google_service_account_key.mykey.private_key
|
||||
}
|
||||
Reference in New Issue
Block a user