| Server IP : 167.99.254.82 / Your IP : 216.73.216.188 Web Server : Apache System : Linux host.techisquad.com 5.15.0-190-generic #200-Ubuntu SMP Fri Aug 7 15:06:04 UTC 2026 x86_64 User : pawluxera ( 1011) PHP Version : 8.1.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /lib/python3/dist-packages/awscli/examples/secretsmanager/ |
Upload File : |
**To retrieve the encrypted secret value of a secret**
The following ``get-secret-value`` example gets the current secret value. To get the previous secret value, include ``--version-stage AWSPREVIOUS``. ::
aws secretsmanager get-secret-value \
--secret-id MyTestSecret
Output::
{
"ARN": "arn:aws:secretsmanager:us-west-2:123456789012:secret:MyTestSecret-a1b2c3",
"Name": "MyTestSecret",
"VersionId": "a1b2c3d4-5678-90ab-cdef-EXAMPLE11111",
"SecretString": "{\"user\":\"diegor\",\"password\":\"i29wwX!%9wFV\"}",
"VersionStages": [
"AWSCURRENT"
],
"CreatedDate": 1523477145.713
}
For more information, see `Retrieve a secret <https://docs.aws.amazon.com/secretsmanager/latest/userguide/retrieving-secrets.html>`__ in the *Secrets Manager User Guide*.