Files
steampipe/tests/manual_testing/node_reuse/param_ref/dashboard.sp

19 lines
170 B
HCL

dashboard "param_ref" {
table {
base = table.t1
}
}
table "t1"{
param "dash" {
default = "foo"
}
sql = "select $1 as c1"
args = [ param.dash]
}