1

When you want to migrate an existing Spring Boot application to AWS Systems Manager Parameter Store, is there a way to import all existing properties from the application's config file (application.yml) to AWS Systems Manager Parameter Store automatically?

I found there is a aws ssm cli available, which allows to put parameters to the Parameter Store, but it still seems, that I have to migrate each application property one by one.

tfe
  • 11
  • 1

1 Answers1

0

As far as the documentation is concerned there is no reference of importing spring-boot parameters into SSM automatically. But you can use AWS CDK using Java language and bulk insert the parameters into SSM. Reading YML file in java is also trivial.

Reference of AWS CDK creating SSM Params is here https://docs.aws.amazon.com/cdk/api/v1/docs/aws-ssm-readme.html#creating-new-ssm-parameters-in-your-cdk-app

Hussain Mansoor
  • 2,934
  • 2
  • 27
  • 40