Skip to content

Commit 711e1db

Browse files
authored
fix: remove extraneous dollar sign in keys output (#50)
* fix: remove extraneous dollar sign in `keys` output * Update outputs.tf
1 parent 3d3eeb1 commit 711e1db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

outputs.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,5 +68,5 @@ output "iam_emails_list" {
6868
output "keys" {
6969
description = "Map of service account keys."
7070
sensitive = true
71-
value = { for k, v in local.names : k => var.generate_keys ? "$${base64decode(google_service_account_key.keys[v].private_key)}" : "" }
71+
value = { for k, v in local.names : k => var.generate_keys ? base64decode(google_service_account_key.keys[v].private_key) : "" }
7272
}

0 commit comments

Comments
 (0)