turbot / steampipe-plugin-gcp

Use SQL to instantly query GCP resources across regions, projects and organizations. Open source CLI. No DB required.
https://hub.steampipe.io/plugins/turbot/gcp
Apache License 2.0
39 stars 24 forks source link

Fixed the column value for project is always null for the table gcp_alloydb_cluster #616 #617

Closed ParthaI closed 2 months ago

ParthaI commented 2 months ago

Integration test logs

Logs ``` Add passing integration test logs here ```

Example query results

Results ``` > select concat(name, ' [', location, '/', project, ']') as title, name, _ctx ->> 'connection_name' as cred, location, project from gcp_alloydb_cluster where date_part('day', now()-create_time) < 1 +-------------------------------------------------------------------------------+---------------------------------------------------------+------+----------+------------+ | title | name | cred | location | project | +-------------------------------------------------------------------------------+---------------------------------------------------------+------+----------+------------+ | projects/parker-aaa/locations/us-east4/clusters/test-pc [us-east4/parker-aaa] | projects/parker-aaa/locations/us-east4/clusters/test-pc | gcp | us-east4 | parker-aaa | +-------------------------------------------------------------------------------+---------------------------------------------------------+------+----------+------------+ ```