The Spring Boot Parameter Store Integration is a tiny library used to integrate AWS Parameter Store in Spring Boot's powerful property injection. For example, it allows you to fetch a property directly using the @Value
annotation. In fact, it simply adds a PropertySource with highest precedence to the existing ones (see Spring Boot's External Configuration).
The library uses:
Those can be overridden in your pom.xml
.
The library was tested and worked properly with:
- Spring Boot 1.4.x, 1.5.x, 2.x and 3.x
- AWS Java SDK >= 2.x
<dependency>
<groupId>com.coveo</groupId>
<artifactId>spring-boot-parameter-store-integration</artifactId>
<version>2.0.0</version>
</dependency>
- Set
awsParameterStorePropertySource.enabled
totrue
(yml, properties, or anything here) - Add the profile
awsParameterStorePropertySourceEnabled
to your active profiles - Set
awsParameterStorePropertySource.enabledProfiles
with some custom profiles that should integrate the AWS Parameter Store using a comma-separated list such asMyProductionProfile,MyTestProfile
Important: using other list injecting methods like a yaml list won't work because this property gets loaded too early in the boot process.
Use a property that is prefixed with /
somewhere such as
@Value("${/my/parameter/store/property}")
String value;
The AWS Parameter Store already uses this naming pattern to classify your properties as you would do with folders. Using this prefix to limit the number of calls to AWS at boot seemed natural. This means that properties not prefixed with /
can't yet be fetched in the AWS Parameter Store using this lib.
The lib uses the DefaultAWSCredentialProviderChain and the DefaultAWSRegionProviderChain. This means that if your code is running on an EC2 instance that has access to a Parameter Store property and its associated KMS key, the library should be able to fetch it without any configuration.
If you need to use a custom endpoint for the AWS Simple Systems Management client, you can set the property awsParameterStoreSource.ssmClient.endpointConfiguration.endpoint
. For more details, see the AWSClientBuilder.EndpointConfiguration class, which is used to configure the client. By default, the associated signing region is fetched from DefaultAWSRegionProviderChain, but if you need to specify a different one, you can use the property awsParameterStoreSource.ssmClient.endpointConfiguration.signingRegion
. Note that this only sets the signingRegion
for the endpoint and not the aws client region. Region configuration should be done using the providers available from the DefaultAWSRegionProviderChain.
If you ever hit some AWS exceptions, there is a parameter that can allow the Parameter Store client to retry more than the default 3 times (AWS SDK default). Just use the property awsParameterStoreSource.ssmClient.maxErrorRetry
to increase the number of retries.
Since naming properties with some /
everywhere seems a bit awkward and not coherent with actual property keys, we suggest using placeholder properties. This way you can use AWS Parameter Store without modifying your current property naming scheme.
Using nested properties makes things easier for multiple environments and simplifies property name changes in the Parameter Store without editing the code (using an environment variable).
So your yml could look like this:
my.super.duper.secret: defaultValue
And you would inject the Parameter Store key through an environment variable using a placeholder like this:
my.super.duper.secret: ${/my/parameter/store/secret}
When Spring Boot encounters your environment variable, it doesn't inject ${/my/parameter/store/secret}
in your property my.super.duper.secret
, but instead tries to load the property /my/parameter/store/secret
from its property sources, and then hits the Parameter Store source because of the prefix /
.
The default behaviour of a PropertySource when it can't find a property is to return null
, and then the PropertyResolver iterates on every other PropertySource to find a matching value. This is the default behaviour for this lib.
If you want to halt the boot when a property prefixed with /
isn't found in the Parameter Store, just set awsParameterStorePropertySource.haltBoot
to true
in your properties. We personally use this to prevent injecting default properties in a production environment.
TL;DR: Define the enabling properties in the bootstrap properties (bootstrap.yml
, bootstrap.properties
, etc.)(see Unleashing the Magic).
Spring Cloud has a second application context named bootstrap that gets initialized before Spring Boot's normal application context. Since this library uses an EnvironmentPostPrecessor to add the Parameter Store PropertySource, it will get triggered twice if you enabled in the bootstrap properties. This allows it to work in both context and to be on top of the property sources in both. For this reason, if you need to fetch Parameter Store properties in the bootstrap context, you should use the bootstrap properties to enable the library. Otherwise you can enable it in the normal Spring Boot context and it will work fine.
If you still want the post processor to run twice or if you are using spring-boot-devtools, you can set the optional property awsParameterStorePropertySource.supportMultipleApplicationContexts
to true
. The default property value is false
to prevent multiple initializations. If you are also using Spring Cloud, this property will only work if set in the bootstrap properties.
- Set
awsParameterStoreSource.multiRegion.ssmClient.regions
to a comma-separated string of regions from which you want to retrieve parameters. Example:us-east-1,us-east-2
. Doing so will add aParameterStorePropertySource
object for each region specified, and this object will list the parameters associated with this region. The integration searches for parameters in regions following the order specified, and stops at the first occurrence. You should therefore put the regions in order of precedence.
Reminder: using other list injecting methods like a yaml list won't work because this property gets loaded too early in the boot process. - If you want to halt the boot when a property isn't found in any of the specified regions, just set
awsParameterStorePropertySource.haltBoot
totrue
in your properties. - Make sure that your service has the necessary permissions to access parameters in the specified regions.
Important: If set, this property takes precedence overawsParameterStoreSource.ssmClient.endpointConfiguration.endpoint
andawsParameterStoreSource.ssmClient.endpointConfiguration.signingRegion
. They are mutually exclusive.
Open an issue to report bugs or to request additional features. Pull requests are always welcome.
UPDATE: I wrote a blog post about this library on our technical blog.