From 7c383e85cd5040a63b9fbfcf2c9560b17779ebbb Mon Sep 17 00:00:00 2001 From: Vedant Pareek Date: Wed, 29 May 2024 16:55:15 +0530 Subject: [PATCH] Base64 decoding of the serviceaccount key --- output.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/output.tf b/output.tf index b0726dc..02cd279 100644 --- a/output.tf +++ b/output.tf @@ -27,7 +27,7 @@ output "serviceaccount_name" { description = "Name of the service account" } output "serviceaccount_key" { - value = google_service_account_key.truefoundry_platform_feature_service_account_key.private_key + value = base64decode(google_service_account_key.truefoundry_platform_feature_service_account_key.private_key) sensitive = true description = "Service account keys" }