github.com/turbot/steampipe@v1.7.0-rc.0.0.20240517123944-7cef272d4458/pkg/steampipeconfig/testdata/mods/dashboard_sibling_containers/report.sp (about)

     1  // this dashboard is used to test the parsing of a dashboard containing
     2  // multiple sibling containers
     3  
     4  dashboard "sibling_containers_report" {
     5    container {
     6      text {
     7        value = "container 1"
     8      }
     9      chart {
    10        title = "container 1 chart 1"
    11        sql = "select 1 as container"
    12      }
    13    }
    14  
    15    container {
    16      text {
    17        value = "container 2"
    18      }
    19      chart {
    20        title = "container 2 chart 1"
    21        sql = "select 2 as container"
    22      }
    23    }
    24  
    25    container {
    26      text {
    27        value = "container 3"
    28      }
    29      chart {
    30        title = "container 3 chart 1"
    31        sql = "select 3 as container"
    32      }
    33    }
    34  }