turbot/azure_insights

Query: child_cosmosdb_restorable_database_account_for_cosmosdb_account

Usage

powerpipe query azure_insights.query.child_cosmosdb_restorable_database_account_for_cosmosdb_account

SQL

select
lower(ra.id) as restorable_database_account_id
from
azure_cosmosdb_restorable_database_account ra,
azure_cosmosdb_account a
where
ra.account_name = a.name
and ra.subscription_id = a.subscription_id
and lower(a.id) = $1;