├── .gitignore ├── .travis.yml ├── LICENSE ├── contributing.md ├── pom.xml ├── readme.md └── src ├── main ├── java │ └── com │ │ └── coveo │ │ └── configuration │ │ └── parameterstore │ │ ├── ParameterStorePropertySource.java │ │ ├── ParameterStorePropertySourceConfigurationProperties.java │ │ ├── ParameterStorePropertySourceEnvironmentPostProcessor.java │ │ ├── ParameterStoreSource.java │ │ ├── exception │ │ ├── ParameterStoreError.java │ │ └── ParameterStoreParameterNotFoundError.java │ │ └── strategy │ │ ├── DefaultParameterStorePropertySourceConfigurationStrategy.java │ │ ├── MultiRegionParameterStorePropertySourceConfigurationStrategy.java │ │ ├── ParameterStorePropertySourceConfigurationStrategy.java │ │ ├── ParameterStorePropertySourceConfigurationStrategyFactory.java │ │ └── StrategyType.java └── resources │ ├── META-INF │ └── spring.factories │ └── code-formatter.xml └── test └── java └── com └── coveo └── configuration └── parameterstore ├── ParameterStorePropertySourceEnvironmentPostProcessorTest.java ├── ParameterStorePropertySourceTest.java ├── ParameterStoreSourceTest.java └── strategy ├── DefaultParameterStorePropertySourceConfigurationStrategyTest.java ├── MultiRegionParameterStorePropertySourceConfigurationStrategyTest.java └── ParameterStorePropertySourceConfigurationStrategyFactoryTest.java /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coveooss/spring-boot-parameter-store-integration/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coveooss/spring-boot-parameter-store-integration/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coveooss/spring-boot-parameter-store-integration/HEAD/LICENSE -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coveooss/spring-boot-parameter-store-integration/HEAD/contributing.md -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coveooss/spring-boot-parameter-store-integration/HEAD/pom.xml -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coveooss/spring-boot-parameter-store-integration/HEAD/readme.md -------------------------------------------------------------------------------- /src/main/java/com/coveo/configuration/parameterstore/ParameterStorePropertySource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coveooss/spring-boot-parameter-store-integration/HEAD/src/main/java/com/coveo/configuration/parameterstore/ParameterStorePropertySource.java -------------------------------------------------------------------------------- /src/main/java/com/coveo/configuration/parameterstore/ParameterStorePropertySourceConfigurationProperties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coveooss/spring-boot-parameter-store-integration/HEAD/src/main/java/com/coveo/configuration/parameterstore/ParameterStorePropertySourceConfigurationProperties.java -------------------------------------------------------------------------------- /src/main/java/com/coveo/configuration/parameterstore/ParameterStorePropertySourceEnvironmentPostProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coveooss/spring-boot-parameter-store-integration/HEAD/src/main/java/com/coveo/configuration/parameterstore/ParameterStorePropertySourceEnvironmentPostProcessor.java -------------------------------------------------------------------------------- /src/main/java/com/coveo/configuration/parameterstore/ParameterStoreSource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coveooss/spring-boot-parameter-store-integration/HEAD/src/main/java/com/coveo/configuration/parameterstore/ParameterStoreSource.java -------------------------------------------------------------------------------- /src/main/java/com/coveo/configuration/parameterstore/exception/ParameterStoreError.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coveooss/spring-boot-parameter-store-integration/HEAD/src/main/java/com/coveo/configuration/parameterstore/exception/ParameterStoreError.java -------------------------------------------------------------------------------- /src/main/java/com/coveo/configuration/parameterstore/exception/ParameterStoreParameterNotFoundError.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coveooss/spring-boot-parameter-store-integration/HEAD/src/main/java/com/coveo/configuration/parameterstore/exception/ParameterStoreParameterNotFoundError.java -------------------------------------------------------------------------------- /src/main/java/com/coveo/configuration/parameterstore/strategy/DefaultParameterStorePropertySourceConfigurationStrategy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coveooss/spring-boot-parameter-store-integration/HEAD/src/main/java/com/coveo/configuration/parameterstore/strategy/DefaultParameterStorePropertySourceConfigurationStrategy.java -------------------------------------------------------------------------------- /src/main/java/com/coveo/configuration/parameterstore/strategy/MultiRegionParameterStorePropertySourceConfigurationStrategy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coveooss/spring-boot-parameter-store-integration/HEAD/src/main/java/com/coveo/configuration/parameterstore/strategy/MultiRegionParameterStorePropertySourceConfigurationStrategy.java -------------------------------------------------------------------------------- /src/main/java/com/coveo/configuration/parameterstore/strategy/ParameterStorePropertySourceConfigurationStrategy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coveooss/spring-boot-parameter-store-integration/HEAD/src/main/java/com/coveo/configuration/parameterstore/strategy/ParameterStorePropertySourceConfigurationStrategy.java -------------------------------------------------------------------------------- /src/main/java/com/coveo/configuration/parameterstore/strategy/ParameterStorePropertySourceConfigurationStrategyFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coveooss/spring-boot-parameter-store-integration/HEAD/src/main/java/com/coveo/configuration/parameterstore/strategy/ParameterStorePropertySourceConfigurationStrategyFactory.java -------------------------------------------------------------------------------- /src/main/java/com/coveo/configuration/parameterstore/strategy/StrategyType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coveooss/spring-boot-parameter-store-integration/HEAD/src/main/java/com/coveo/configuration/parameterstore/strategy/StrategyType.java -------------------------------------------------------------------------------- /src/main/resources/META-INF/spring.factories: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coveooss/spring-boot-parameter-store-integration/HEAD/src/main/resources/META-INF/spring.factories -------------------------------------------------------------------------------- /src/main/resources/code-formatter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coveooss/spring-boot-parameter-store-integration/HEAD/src/main/resources/code-formatter.xml -------------------------------------------------------------------------------- /src/test/java/com/coveo/configuration/parameterstore/ParameterStorePropertySourceEnvironmentPostProcessorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coveooss/spring-boot-parameter-store-integration/HEAD/src/test/java/com/coveo/configuration/parameterstore/ParameterStorePropertySourceEnvironmentPostProcessorTest.java -------------------------------------------------------------------------------- /src/test/java/com/coveo/configuration/parameterstore/ParameterStorePropertySourceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coveooss/spring-boot-parameter-store-integration/HEAD/src/test/java/com/coveo/configuration/parameterstore/ParameterStorePropertySourceTest.java -------------------------------------------------------------------------------- /src/test/java/com/coveo/configuration/parameterstore/ParameterStoreSourceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coveooss/spring-boot-parameter-store-integration/HEAD/src/test/java/com/coveo/configuration/parameterstore/ParameterStoreSourceTest.java -------------------------------------------------------------------------------- /src/test/java/com/coveo/configuration/parameterstore/strategy/DefaultParameterStorePropertySourceConfigurationStrategyTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coveooss/spring-boot-parameter-store-integration/HEAD/src/test/java/com/coveo/configuration/parameterstore/strategy/DefaultParameterStorePropertySourceConfigurationStrategyTest.java -------------------------------------------------------------------------------- /src/test/java/com/coveo/configuration/parameterstore/strategy/MultiRegionParameterStorePropertySourceConfigurationStrategyTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coveooss/spring-boot-parameter-store-integration/HEAD/src/test/java/com/coveo/configuration/parameterstore/strategy/MultiRegionParameterStorePropertySourceConfigurationStrategyTest.java -------------------------------------------------------------------------------- /src/test/java/com/coveo/configuration/parameterstore/strategy/ParameterStorePropertySourceConfigurationStrategyFactoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coveooss/spring-boot-parameter-store-integration/HEAD/src/test/java/com/coveo/configuration/parameterstore/strategy/ParameterStorePropertySourceConfigurationStrategyFactoryTest.java --------------------------------------------------------------------------------