|
6 | 6 | [](https://github.com/rnag/py-secrets-cache/actions/workflows/release.yml) |
7 | 7 | [](https://secrets-cache.readthedocs.io/en/latest/?version=latest) |
8 | 8 |
|
9 | | -> [!TIP] |
10 | | -> Want a full AWS Lambda + CDK deployment example? |
11 | | -> Check out [secrets-cache-cdk-example](https://github.com/rnag/secrets-cache-cdk-example) |
12 | | -> for a ready-to-deploy Python CDK project that demonstrates `secrets-cache` usage |
13 | | -> with Secrets Manager and SSM parameters, including caching timings. |
| 9 | +!!! tip |
| 10 | + Check out [secrets-cache-cdk-example](https://github.com/rnag/secrets-cache-cdk-example) |
| 11 | + for a ready-to-deploy AWS Lambda + CDK project demonstrating `secrets-cache` usage |
| 12 | + with Secrets Manager and SSM parameters, including caching timings. |
14 | 13 |
|
15 | 14 | Cache secrets locally from AWS Secrets Manager and other secret stores, with optional local caching for development or Lambda-friendly usage. |
16 | 15 |
|
17 | 16 | * PyPI package: https://pypi.org/project/secrets-cache/ |
18 | 17 | * Free software: MIT License |
19 | | -* Documentation: https://secrets-cache.readthedocs.io. |
| 18 | +* Documentation: https://secrets-cache.readthedocs.io |
20 | 19 |
|
21 | 20 | ## Installation |
22 | 21 |
|
23 | 22 | Install the base package (minimal, Lambda-friendly): |
24 | 23 |
|
25 | 24 | ```bash |
26 | 25 | pip install secrets-cache[lambda] |
27 | | -```` |
| 26 | +``` |
28 | 27 |
|
29 | 28 | For local development or testing (with local TOML caching, AWS SDK): |
30 | 29 |
|
@@ -84,7 +83,7 @@ When running in AWS Lambda, you usually don’t want file-based caching. Use the |
84 | 83 |
|
85 | 84 | ```bash |
86 | 85 | pip install secrets-cache[lambda] |
87 | | -```` |
| 86 | +``` |
88 | 87 |
|
89 | 88 | ### Example Lambda handler |
90 | 89 |
|
|
0 commit comments