turbot/gcp_insights

Query: sql_backups_for_sql_database_instance

Usage

powerpipe query gcp_insights.query.sql_backups_for_sql_database_instance

Steampipe Tables

SQL

select
id::text as backup_id
from
gcp_sql_backup
where
self_link like $1 || '/%'
and project = split_part($1, '/', 7);