Files
steampipe/steampipeconfig/testdata/mods/query_with_paramdefs/query.sp
kaidaguerre e0ff19a280 Update package naming to be consistent and follow Go standards. Closes #1282
General code spring cleaning:
* move file paths from `consts` package to `filepaths`
* move InitData and ExportData to query and control packages
2022-01-04 12:28:36 +00:00

14 lines
259 B
HCL

query "q1"{
title ="Q1"
description = "THIS IS QUERY 1"
sql = "select 1"
param "p1"{
description = "desc"
default = "I am default"
}
param "p2"{
description = "desc 2"
default = "I am default 2"
}
}