Skip to content

Latest commit

 

History

History
21 lines (14 loc) · 680 Bytes

README.md

File metadata and controls

21 lines (14 loc) · 680 Bytes

Edison Param Store Properties

Use SSM Parameter Store to load properties or secrets

Usage

Enable by setting property: edison.aws.paramstore-properties.enabled = true

Set path to load properties from: edison.aws.paramstore-properties.path = /path/to/properties

Make sure to have the correct policy to edit ssm parameter store properties. paramstore docs

Put Parameters AWS CLI

aws ssm put-parameter --name "/path/to/properties/some.secret.application.property" --value "secret" --type SecureString
aws ssm get-parameters-by-path --path "/path/to/properties"