Skip to content

Commit

Permalink
fix output path
Browse files Browse the repository at this point in the history
  • Loading branch information
Tim Miller committed Jan 30, 2021
1 parent 72830a1 commit 4519bc2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions main.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
output "json" {
value = file("${path.module}/output/custom.json")
value = file("${path.module}/custom.json")
}

output "yaml" {
value = yamlencode(jsondecode(file("${path.module}/output/custom.json")))
}
value = yamlencode(jsondecode(file("${path.module}/custom.json")))
}

0 comments on commit 4519bc2

Please sign in to comment.