Let's say I have my keys and values (as secured strings) in AWS System manager parameter store in region-1. I want to keep a backup of my keys and values so that if tomorrow I need to have the same values in region-2, I can pull the data using some script and then put it in the parameter store of region-2.
I am planning to dump the data in S3 in an encrypted way using some script and then another script would pull it from S3 and push to parameter store.
Is this the correct approach or is there a better way of doing it ?
Any suggestion would be appreciated !