mirror of
https://github.com/turbot/steampipe.git
synced 2026-02-17 19:00:12 -05:00
21 lines
198 B
HCL
21 lines
198 B
HCL
|
|
dashboard "param_ref" {
|
|
|
|
table {
|
|
base = table.t1
|
|
|
|
}
|
|
}
|
|
|
|
table "t1"{
|
|
|
|
with "w1" {
|
|
sql = "select 'foo'"
|
|
}
|
|
|
|
sql = "select $1 as c1"
|
|
param "p1" {
|
|
default = with.w1.rows[0]
|
|
}
|
|
}
|