library
turbot/aws
Get Involved
Version
Pipeline: List IAM Users
Lists the IAM users that have the specified path prefix. If no path prefix is specified, the operation returns all users in the Amazon Web Services account.
Run the pipeline
To run this pipeline from your terminal:
flowpipe pipeline run aws.pipeline.list_iam_users
Use this pipeline
To call this pipeline from your pipeline, use a step:
step "pipeline" "step_name" { pipeline = aws.pipeline.list_iam_users }
Params
Name | Type | Required | Description | Default |
---|---|---|---|---|
conn | connection.aws | Yes | Name of AWS connection to use. If not provided, the default AWS connection will be used. | connection.aws.default |
path_prefix | string | No | The path prefix for filtering the results. For example: /division_abc/subdivision_xyz/ , which would get all user names whose path starts with /division_abc/subdivision_xyz/ . | - |
Outputs
Name | Description |
---|---|
users | A list of users. |