Skip to content

Commit f25718e

Browse files
committed
fix: add new views
1 parent 05388bb commit f25718e

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

views/aws_databases_view.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
ID: aws_databases_view
2+
Query: |
3+
SELECT arn, account_id, region FROM aws_rds_db_cluster UNION
4+
SELECT arn, account_id, region FROM aws_rds_db_instance UNION
5+
SELECT arn, account_id, region FROM aws_redshift_cluster UNION
6+
SELECT arn, account_id, region FROM aws_neptune_db_cluster UNION
7+
SELECT arn, account_id, region FROM aws_memorydb_cluster;

views/object_storages_view.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
ID: object_storages_view
2+
Query: |
3+
SELECT name AS name, account_id AS provider_account_id, region AS region FROM aws_s3_bucket UNION
4+
SELECT storage_account_name AS name, subscription_id AS provider_account_id, region AS region FROM azure_storage_blob;

0 commit comments

Comments
 (0)