Mac上使用的AWS cli版本:aws-cli/1.20.35 Python/3.9.9 Darwin/20.6.0 botocore/1.2.35
命令:aws --profile new secretsmanager get-secret-value --secret-id testsecret --output text --query SecretString
输出:{"passwd":"xxx"}
如何只得到"xxx"?
从文档中获取-如果这个秘密是通过使用控制台创建的,那么Secrets Manager会将信息存储为键/值对的JSON结构。通过aws-cli创建了机密。则get secret值的输出为"xxx"。