星期四, 6月 27, 2019

列出 IAM 使用者與加入 Tag 到使用者小記

列出 IAM 使用者與加入 Tag 到使用者小記

想法: 列出專案使用者清單, 另外為了方便管理使用者,  加入 tag 到使用者, 好快速分辨該使用者相關資訊, 例如: 姓名, 工號 ...

列出 aws  iam 使用者名稱

$ aws  iam  list-users --output  text  | cut -f  2 | cut  -d  '/'  -f  2

列出指定帳號 IAM 使用者
$ aws  iam  list-users  --profile  sakana  --output text  | cut  -f  2 | cut -d  '/'  -f  2

加入 tag 到使用者
以下兩種方式都可以加入 tag 到使用者, 但是我比較喜換第一種

$ aws  iam  tag-user  --user-name 1203080 --tags "Key=姓名, Value=Max"

> aws  iam  tag-user  --user-name 1203080 --tags '{ "Key": "姓名", "Value": "Max"}'

列出使用者 tag
>aws  iam  list-user-tags  --user-name 1203080

Notes:
  • aws resourcegroupstaggingapi get-resources  不能搜尋 IAM tag


Reference

沒有留言: