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

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