mirror of
https://github.com/turbot/steampipe.git
synced 2026-02-18 13:00:10 -05:00
21 lines
629 B
HCL
21 lines
629 B
HCL
benchmark "check_cache_benchmark" {
|
|
title = "Benchmark to test the cache functionality in steampipe"
|
|
children = [
|
|
control.cache_test_1,
|
|
control.cache_test_2
|
|
]
|
|
}
|
|
|
|
control "cache_test_1" {
|
|
title = "Control to test cache functionality 1"
|
|
description = "Control to test cache functionality in steampipe."
|
|
sql = query.check_cache.sql
|
|
severity = "high"
|
|
}
|
|
|
|
control "cache_test_2" {
|
|
title = "Control to test cache functionality 2"
|
|
description = "Control to test cache functionality in steampipe."
|
|
sql = query.check_cache.sql
|
|
severity = "high"
|
|
} |