github.com/darmach/terratest@v0.34.8-0.20210517103231-80931f95e3ff/test/fixtures/terraform-output-listofobjects/output.tf (about) 1 output "list_of_maps" { 2 value = [ 3 { 4 one = 1 5 two = "two" 6 three = "three" 7 more = { 8 four = 4 9 five = "five" 10 } 11 }, 12 { 13 one = "one" 14 two = 2 15 three = 3 16 more = [{ 17 four = 4 18 five = "five" 19 }] 20 } 21 ] 22 } 23 24 output "not_list_of_maps" { 25 value = "Just a string" 26 }