Files
dotfiles/zsh/.local/share/zsh/functions/aws-list-secrets
2025-11-14 14:54:54 +00:00

4 lines
121 B
Plaintext

aws-list-secrets() {
aws secretsmanager list-secrets | jq -r '.SecretList[] | [.Name,.LastChangedDate,.ARN] | @tsv'
}