steampipe plugin install azure

Table: azure_role_assignment - Query Azure Role Assignments using SQL

Azure Role Assignments are a critical component of Azure's access control capabilities. They determine what actions a security principal (like a user, group, or service principal) can perform on a specific Azure resource. Each role assignment is a combination of a security principal, a role definition, and a scope.

Table Usage Guide

The azure_role_assignment table provides insights into role assignments within Azure. As a security administrator, you can explore details of role assignments through this table, including the assigned roles, the associated security principals, and the scope of the assignments. Use it to monitor and manage access control within your Azure environment, ensuring that only the appropriate users, groups, or service principals have access to specific resources.

Examples

Basic info

Explore which roles are assigned to different principals in your Azure environment. This can help you manage access control and understand who has permissions to what resources, enhancing your security posture.

select
name,
id,
principal_id,
principal_type
from
azure_role_assignment;
select
name,
id,
principal_id,
principal_type
from
azure_role_assignment;

List of role assignments which has permission at root level

Discover the segments that are assigned roles with root level access. This is useful for auditing security and access controls in your Azure environment.

select
name,
id,
scope
from
azure_role_assignment
where
scope = '/';
select
name,
id,
scope
from
azure_role_assignment
where
scope = '/';

List of role assignments which has subscription level permission and full access to the subscription

This query is useful for identifying roles that have full access permissions at the subscription level within your Azure environment. It helps in maintaining security and managing access by revealing potential over-permissions.

select
ra.name as roll_assignment_name,
rd.role_name
from
azure_role_assignment ra
join azure_role_definition rd on ra.role_definition_id = rd.id
cross join jsonb_array_elements(rd.permissions) as perm
where
ra.scope like '/subscriptions/%'
and perm -> 'actions' = '["*"]';
select
ra.name as roll_assignment_name,
rd.role_name
from
azure_role_assignment ra
join azure_role_definition rd on ra.role_definition_id = rd.id,
json_each(rd.permissions) as perm
where
ra.scope like '/subscriptions/%'
and json_extract(perm.value, '$.actions') = '["*"]';

Schema for azure_role_assignment

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form, e.g. connection_name.
akasjsonbArray of globally unique identifier strings (also known as) for the resource.
cloud_environmenttextThe Azure Cloud Environment.
idtext=Contains ID to identify a role assignment uniquely.
nametextThe friendly name that identifies the role assignment.
principal_idtext=Contains the principal id.
principal_typetextPrincipal type of the assigned principal ID.
role_definition_idtextName of the assigned role definition.
scopetextCurrent state of the role assignment.
subscription_idtextThe Azure Subscription ID in which the resource is located.
titletextTitle of the resource.
typetextContains the resource type.

Export

This table is available as a standalone Exporter CLI. Steampipe exporters are stand-alone binaries that allow you to extract data using Steampipe plugins without a database.

You can download the tarball for your platform from the Releases page, but it is simplest to install them with the steampipe_export_installer.sh script:

/bin/sh -c "$(curl -fsSL https://steampipe.io/install/export.sh)" -- azure

You can pass the configuration to the command with the --config argument:

steampipe_export_azure --config '<your_config>' azure_role_assignment