AWS cli commands

# findout who am I?
aws sts get-caller-identity

# also findout out who am I with more details
aws iam get-user

# get secret
aws secretsmanager get-secret-value --secret-id foo

# change secret
aws secretsmanager update-secret \
    --secret-id foo \
    --secret-string "{\"json\":\"string\",\"foo\":\"bar\"}"