turbot/terraform_azure_compliance

Query: eventgrid_topic_uses_managed_identity

Usage

powerpipe query terraform_azure_compliance.query.eventgrid_topic_uses_managed_identity

Steampipe Tables

SQL

select
address as resource,
case
when (attributes_std -> 'identity' ->> 'type') = 'SystemAssigned' then 'ok'
else 'alarm'
end status,
split_part(address, '.', 2) || case
when (attributes_std -> 'identity' ->> 'type') = 'SystemAssigned' then ' uses managed identity'
else ' not uses managed identity'
end || '.' reason
, path || ':' || start_line
from
terraform_resource
where
type = 'azurerm_eventgrid_topic';

Controls

The query is being used by the following controls: