Skip to content
This repository has been archived by the owner on Jan 19, 2022. It is now read-only.

Commit

Permalink
Make Secret Manager configuration conditional on the Secret Manager l…
Browse files Browse the repository at this point in the history
…ibrary (#2507)
  • Loading branch information
dzou authored and Travis Tomsu committed Sep 30, 2020
1 parent 392a22d commit f1f8cf8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
*/
@Configuration
@EnableConfigurationProperties(GcpSecretManagerProperties.class)
@ConditionalOnClass(SecretManagerServiceClient.class)
@ConditionalOnClass({SecretManagerServiceClient.class, SecretManagerTemplate.class})
@ConditionalOnProperty(value = "spring.cloud.gcp.secretmanager.enabled", matchIfMissing = true)
public class GcpSecretManagerBootstrapConfiguration {

Expand Down

0 comments on commit f1f8cf8

Please sign in to comment.