mirror of
https://github.com/turbot/steampipe.git
synced 2026-04-14 07:00:08 -04:00
General code spring cleaning: * move file paths from `consts` package to `filepaths` * move InitData and ExportData to query and control packages
14 lines
259 B
HCL
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"
|
|
}
|
|
}
|