We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ee9a9d commit 58e62e8Copy full SHA for 58e62e8
src/main/resources/application-aws.properties
@@ -1,14 +1,16 @@
1
+# These will be injected from Secrets Manager
2
spring.data.mongodb.uri=${mongo.uri}
-
3
spring.rabbitmq.host=${rabbitmq.host}
4
spring.rabbitmq.port=${rabbitmq.port}
5
spring.rabbitmq.username=${rabbitmq.username}
6
spring.rabbitmq.password=${rabbitmq.password}
7
8
-memcached.host=memcached-hqsplq.serverless.aps1.cache.amazonaws.com
9
-memcached.port=11211
+memcached.host=${memcached.host}
+memcached.port=${memcached.port}
10
+
11
+# AWS region
12
+spring.cloud.aws.region.static=ap-south-1
13
14
+# Admin credentials (if not secret)
15
spring.security.user.name=admin
16
spring.security.user.password=admin
-spring.thymeleaf.cache=false
0 commit comments