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

     1  // this dashboard contains a simple container with all possible child resources
     2  // we are testing the parsing of all possible child resources
     3  // TODO add input block in container
     4  
     5  dashboard container_with_child_res {
     6    title = "container with child resources"
     7  
     8    container {
     9      title = "example container with all possible child resources"
    10  
    11      chart {
    12        title = "example chart"
    13        sql = "select 1"
    14      }
    15      card {
    16        title = "example card"
    17        sql = "select 1"
    18        type = "ok"
    19      }
    20      flow {
    21        title = "example flow"
    22        type = "sankey"
    23      }
    24      graph {
    25        title = "example graph"
    26        type = "graph"
    27      }
    28      hierarchy {
    29        title = "example hierarchy"
    30        type = "graph"
    31      }
    32      image {
    33        title = "example image"
    34        src = "https://steampipe.io/images/logo.png"
    35        alt = "steampipe"
    36      }
    37      table {
    38        title = "example table"
    39        sql = "select 1"
    40      }
    41      text {
    42        value = "example text"
    43      }
    44    }
    45  }