Files
steampipe/tests/manual_testing/node_reuse/base_table_with/dashboard.sp
kaidaguerre 718c4f1944 Update steampipe_reference introspection table to include references from with blocks. Closes #2934
* Move AddReference and GetReferences to ResourceWithMetadataImpl
* Remove resourceMapProvider from setBaseProperties signature
* Remove MergeBaseDependencies
* Remove 'base; property from with
* Only populate refs if introspection is enabled
2023-01-06 17:18:24 +00:00

32 lines
409 B
HCL

dashboard "base_query_with" {
title = "base_query_with"
table "foo"{
base = table.t1
}
#
# graph "bar"{
# node "n1" {
# sql = <<-EOQ
# select
# $1 as id,
# $1 as title
#EOQ
# args = [ with.n1.rows[0]]
# }
# }
}
table "t1"{
with "n1" {
query = query.q1
}
sql = "select $1"
args = [ with.n1.rows[0]]
# args = ["foo"]
}
query "q1"{
sql = "select '1'"
}