Hi,
How can i do a debug & see all users ? Any suggestions Please ?
# Note: These examples do not set authentication details, see the AWS Guide for details.
# Gather facts about "test" user.
- name: Get IAM user facts
community.aws.iam_user_info:
name: "test"
==
i tried
---
- name: User info
hosts: local
connection: local
tasks:
- name: gather user info
community.aws.iam_user_info:
name: "admin"
register: result
==
i would like to get all user info not user called admin only...
Thanks