Skip to content

Commit

Permalink
fix: remove extraneous dollar sign in keys output (#50)
Browse files Browse the repository at this point in the history
* fix: remove extraneous dollar sign in `keys` output

* Update outputs.tf
  • Loading branch information
morgante authored Sep 1, 2021
1 parent 3d3eeb1 commit 711e1db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -68,5 +68,5 @@ output "iam_emails_list" {
output "keys" {
description = "Map of service account keys."
sensitive = true
value = { for k, v in local.names : k => var.generate_keys ? "$${base64decode(google_service_account_key.keys[v].private_key)}" : "" }
value = { for k, v in local.names : k => var.generate_keys ? base64decode(google_service_account_key.keys[v].private_key) : "" }
}

0 comments on commit 711e1db

Please sign in to comment.