Skip to content

Commit

Permalink
Merge pull request #6 from truefoundry/base64decode-serviceaccount-key
Browse files Browse the repository at this point in the history
Base64 decoding of the serviceaccount key
  • Loading branch information
dunefro committed May 29, 2024
2 parents 1952838 + 7c383e8 commit 899432c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion output.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
Expand Down

0 comments on commit 899432c

Please sign in to comment.