Disable insecure spring boot actuator endpoints by default.

Spring Boot Actuator only exposes the /actuator/health /actuator/info endpoint by default
diff --git a/alpha/alpha-server/src/main/resources/application.yaml b/alpha/alpha-server/src/main/resources/application.yaml
index 59ed23f..3cb99aa 100644
--- a/alpha/alpha-server/src/main/resources/application.yaml
+++ b/alpha/alpha-server/src/main/resources/application.yaml
@@ -140,7 +140,7 @@
   endpoints:
     web:
       exposure:
-        include: "*"
+        include: "health,info"
   health:
     redis:
       enabled: false