From b6f345279519ab8eac300c47af8d60b9e6a5a5e8 Mon Sep 17 00:00:00 2001 From: Raj Saxena Date: Tue, 21 Jul 2020 16:44:08 +0200 Subject: [PATCH] fix: Key should be the actual value of the generated json content (#26) --- outputs.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/outputs.tf b/outputs.tf index 8705b53..3e991aa 100644 --- a/outputs.tf +++ b/outputs.tf @@ -31,7 +31,7 @@ output "iam_email" { output "key" { description = "Service account key (for single use)." - value = data.template_file.keys[var.names[0]] + value = data.template_file.keys[var.names[0]].rendered } output "service_accounts" {