lets say I have a kubernetes secret like:
apiVersion: v1
kind: Secret
metadata:
name: mysecret
type: Opaque
data:
USER_NAME: YWRtaW4=
PASSWORD: MWYyZDFlMmU2N2Rm
When USER_NAME and PASSWORD are within the running Pod. They are KMS encrypted. How would I reference them in a springboot application.yaml?
How can I decrypt them?
Thanks