openstack_aggregateopenstack_application_credentialopenstack_availability_zoneopenstack_compute_imageopenstack_domainopenstack_fipopenstack_groupopenstack_hypervisoropenstack_keypairopenstack_networkopenstack_portopenstack_projectopenstack_roleopenstack_role_assignmentopenstack_routeropenstack_security_groupopenstack_security_group_ruleopenstack_serveropenstack_server_groupopenstack_snapshotopenstack_subnetopenstack_useropenstack_volumeopenstack_volume_type
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, extrafrom openstack_role;
Role by ID
select id, name, extrafrom openstack_rolewhere id = 'd104344e6db0467689a3e721edc9dc2b';
Roles with a description
select id, name, extrafrom openstack_rolewhere extra -> 'description' != 'null';
Schema for openstack_role
Name | Type | Operators | Description |
---|---|---|---|
_ctx | jsonb | Steampipe context in JSON form, e.g. connection_name. | |
domain_id | text | DomainID is the domain ID the role belongs to. | |
extra | jsonb | Description is the description of the role. | |
id | text | = | ID is the unique ID of the role. |
name | text | Name is the role name. |