mirror of
https://github.com/turbot/steampipe.git
synced 2026-05-09 12:00:22 -04:00
19 lines
170 B
HCL
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]
|
|
}
|