ernw/openstack
steampipe plugin install ernw/openstack

Table: openstack_role

A role grants authorization to an end-user and dictates the authorization level assigned to a user.

Examples

Basic role info

select
id,
name,
extra
from
openstack_role;

Role by ID

select
id,
name,
extra
from
openstack_role
where
id = 'd104344e6db0467689a3e721edc9dc2b';

Roles with a description

select
id,
name,
extra
from
openstack_role
where
extra -> 'description' != 'null';

Schema for openstack_role

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form, e.g. connection_name.
domain_idtextDomainID is the domain ID the role belongs to.
extrajsonbDescription is the description of the role.
idtext=ID is the unique ID of the role.
nametextName is the role name.