github.com/turbot/steampipe@v1.7.0-rc.0.0.20240517123944-7cef272d4458/pkg/steampipeconfig/testdata/mods/dashboard_with_duplicate_named_children/report.sp (about) 1 // dashboard with duplicate named child block 2 3 dashboard dashboard_with_child_res { 4 title = "dashboard with child resources" 5 6 container "cnt1" { 7 title = "example container" 8 } 9 chart "c1" { 10 title = "example chart" 11 sql = "select 1" 12 } 13 chart "c1" { 14 title = "example chart" 15 sql = "select 1" 16 } 17 }