AWS CLI Query - describe-keys with parameters

后端 未结 1 975
栀梦
栀梦 2021-01-26 10:27

So this week, I have started to begin learning the CLI and seeing what can be done within this.

I was given the task of grabbing information regarding this:

    <
相关标签:
1条回答
  • 2021-01-26 10:47

    You can use following command to list all of your kms keys (KeyId and KeyArn Vaules) with the table format.

    aws kms list-keys --query Keys[*].[KeyId,KeyArn] --output table

    0 讨论(0)
提交回复
热议问题