turbot/alicloud
steampipe plugin install alicloud

Table: alicloud_ram_group - Query Alibaba Cloud RAM Groups using SQL

Alibaba Cloud Resource Access Management (RAM) is a service that helps manage user identities and resource access permissions. RAM allows you to create and manage multiple identities under one Alibaba Cloud account, and control the access of these identities to your resources. You can grant different permissions to different identities to ensure that your resources can only be accessed by trusted entities.

Table Usage Guide

The alicloud_ram_group table provides insights into RAM Groups within Alibaba Cloud Resource Access Management (RAM). As a system administrator, explore group-specific details through this table, including group name, id, comments, and the creation time. Utilize it to manage and control access to your resources, ensuring that only trusted entities have the necessary permissions.

Examples

User details associated with each RAM group

Determine the areas in which users are associated with each RAM group in Alicloud. This can help in better understanding the group distribution and user management within your Alicloud environment.

select
name as group_name,
iam_user ->> 'UserName' as user_name,
iam_user ->> 'DisplayName' as display_name,
iam_user ->> 'JoinDate' as user_join_date
from
alicloud_ram_group
cross join jsonb_array_elements(users) as iam_user;
select
name as group_name,
json_extract(iam_user.value, '$.UserName') as user_name,
json_extract(iam_user.value, '$.DisplayName') as display_name,
json_extract(iam_user.value, '$.JoinDate') as user_join_date
from
alicloud_ram_group,
json_each(users) as iam_user;

List the policies attached to each RAM group

Explore the various policies attached to each RAM group, including the policy type, default version, and attachment date. This can help in understanding the security measures and access controls in place for each group.

select
name as group_name,
policies ->> 'PolicyName' as policy_name,
policies ->> 'PolicyType' as policy_type,
policies ->> 'DefaultVersion' as policy_default_version,
policies ->> 'AttachDate' as policy_attachment_date
from
alicloud_ram_group,
jsonb_array_elements(attached_policy) as policies;
select
name as group_name,
json_extract(policies.value, '$.PolicyName') as policy_name,
json_extract(policies.value, '$.PolicyType') as policy_type,
json_extract(policies.value, '$.DefaultVersion') as policy_default_version,
json_extract(policies.value, '$.AttachDate') as policy_attachment_date
from
alicloud_ram_group,
json_each(attached_policy) as policies;

List of RAM groups with no users added to it

Determine the areas in which RAM groups have been created but no users have been added. This can help in identifying unused resources and optimizing resource allocation.

select
name as group_name,
create_date,
users
from
alicloud_ram_group
where
users = '[]';
select
name as group_name,
create_date,
users
from
alicloud_ram_group
where
users = '[]';

Schema for alicloud_ram_group

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form, e.g. connection_name.
account_idtextThe Alicloud Account ID in which the resource is located.
akasjsonbArray of globally unique identifier strings (also known as) for the resource.
arntextThe Alibaba Cloud Resource Name (ARN) of the RAM user group.
attached_policyjsonbA list of policies attached to a RAM user group.
commentstextThe description of the RAM user group.
create_datetimestamp with time zoneThe time when the RAM user group was created.
nametext=The name of the RAM user group.
regiontextThe Alicloud region in which the resource is located.
titletextTitle of the resource.
update_datetimestamp with time zoneThe time when the RAM user group was modified.
usersjsonbA list of users in the group.

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)" -- alicloud

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

steampipe_export_alicloud --config '<your_config>' alicloud_ram_group