mirror of
https://github.com/turbot/steampipe.git
synced 2026-03-22 01:00:20 -04:00
12 lines
376 B
HCL
12 lines
376 B
HCL
query "query_1"{
|
|
title ="query_1"
|
|
description = "Simple query 1"
|
|
sql = "select 'ok' as status, 'steampipe' as resource, 'acceptance tests' as reason, pg_sleep(10) as sleep"
|
|
}
|
|
|
|
query "query_2"{
|
|
title ="query_2"
|
|
description = "Simple query 2"
|
|
sql = "select 'alarm' as status, 'turbot' as resource, 'integration tests' as reason, pg_sleep(10) as sleep"
|
|
}
|