turbot/gcp_insights

Query: compute_instance_tags

Usage

powerpipe query gcp_insights.query.compute_instance_tags

Steampipe Tables

SQL

with jsondata as (
select
tags :: json as tags
from
gcp_compute_instance
where
id = $1
)
select
key as "Key",
value as "Value"
from
jsondata,
json_each_text(tags)
order by
key;

Dashboards

The query is used in the dashboards: