Created
April 4, 2020 11:00
-
-
Save ramesh-lingappan/9da2637a36eddac6abd3f2d267ca053a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.rameshl.demo.secretmanager.config; | |
import lombok.Data; | |
import lombok.Getter; | |
import org.springframework.boot.context.properties.ConfigurationProperties; | |
import org.springframework.stereotype.Component; | |
@Data | |
@Component | |
@ConfigurationProperties(prefix = "app.secrets") | |
public class AppSecrets { | |
@Getter | |
private String googleClientId; | |
private String googleClientSecret; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment