diff --git a/outputs.tf b/outputs.tf index 72642fe..c38fe79 100644 --- a/outputs.tf +++ b/outputs.tf @@ -1,9 +1,9 @@ output "json_map" { description = "Map type of container definition" - value = jsondecode(module.container.json_map) + value = jsondecode(module.container.json_map_encoded) } output "json" { description = "String type of container definition" - value = module.container.json_map -} \ No newline at end of file + value = module.container.json_map_encoded +}