Open boopathigithub opened 3 years ago
Sure! Here's how to create and update key-value pairs in AWS using AWS Systems Manager Parameter Store.
Sign in to the AWS Management Console and open the Systems Manager console at AWS Systems Manager Console.
In the navigation pane, choose Parameter Store.
Choose Create parameter.
Specify the following values:
/MyApp/Dev/DBPassword
.String
.text
(if available) or leave as text
.Choose Create parameter to save your new key-value pair.
Sign in to the AWS Management Console and open the Systems Manager console at AWS Systems Manager Console.
In the navigation pane, choose Parameter Store.
Choose the parameter you want to update from the list.
Choose Edit.
Modify the values for the parameter as needed:
Choose Save changes to apply your updates.
aws ssm put-parameter \
--name "/MyApp/Dev/DBPassword" \
--description "Database password for MyApp in Dev environment" \
--value "MySecretPassword" \
--type "String"
aws 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?