AWS Secret Manager
·85 words·1 min
Themes Guide - This article is part of a series.
Part : This Article
Overview #
AWS Secret Manager can help to store secrets in a secure manner. Here are some typical concepts and commands
- Log onto AWS Console and navigate to AWS Secret Manager
- Add a secret by specifying key/value pair as well as the secret name
- Retrieve the secret via AWS CLI (secret name is secret_test in this example)
aws secretsmanager get-secret-value --secret-id secret_test
- See samples for various languages on AWS console documentation
- Cost: $0.40 per secret per month, $0.05 per 10,000 API calls
Themes Guide - This article is part of a series.
Part : This Article