Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ramesh-lingappan/9da2637a36eddac6abd3f2d267ca053a to your computer and use it in GitHub Desktop.
Save ramesh-lingappan/9da2637a36eddac6abd3f2d267ca053a to your computer and use it in GitHub Desktop.
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