-
Notifications
You must be signed in to change notification settings - Fork 5.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Key pair creation steps #5
Comments
Sure! Here's how to create and update key-value pairs in AWS using AWS Systems Manager Parameter Store. Creating a Key-Value Pair
Updating a Key-Value Pair
Example Using AWS CLICreating a Parameteraws ssm put-parameter \
--name "/MyApp/Dev/DBPassword" \
--description "Database password for MyApp in Dev environment" \
--value "MySecretPassword" \
--type "String" Updating a Parameteraws ssm put-parameter \
--name "/MyApp/Dev/DBPassword" \
--value "MyNewSecretPassword" \
--type "String" \
--overwrite These steps and commands will help you manage key-value pairs in AWS Systems Manager Parameter Store efficiently. |
Hi,
It would be helpful if the instruction is given to create a key-value pair and how to update the key-value pair in AWS?
The text was updated successfully, but these errors were encountered: