Skip to content

Commit a851243

Browse files
Apply suggestions from code review
1 parent 4659fb3 commit a851243

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

articles/container-apps/java-spring-cloud-config-server-usage.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ az containerapp update \
5656
--resource-group <RESOURCE_GROUP>
5757
```
5858

59-
## Spring Cloud Config Server configuration options
59+
## Configuration options
6060

6161
The `az containerapp update` command uses the `--configuration` parameter to control how the Spring Could Config Server is configured. You can use multiple parameters at once as long as they're separated by a space. You can find more details in [Spring Cloud Config Server](https://docs.spring.io/spring-cloud-config/docs/current/reference/html/#_spring_cloud_config_server) docs.
6262

@@ -112,7 +112,7 @@ The following configuration settings are available on the `spring.cloud.config.s
112112
- **spring.cloud.config.server.encrypt.enabled**
113113
- You can set this to `false`, to disable server-side decryption.
114114

115-
## Spring Cloud Config Server refresh
115+
## Refresh
116116

117117
Services that consume properties need to know about the change before it happens. The default notification method for Spring Cloud Config Server involves manually triggering the refresh event, such as refresh by call `https://<YOUR-CONFIG-CLIENT-HOST-NAME>/actuator/refresh`, which may not be feasible if there are many app instances.
118118

@@ -173,9 +173,9 @@ Instead, you can automatically refresh values from Config Server by letting the
173173
}
174174
```
175175

176-
## Encryption and Decryption with a symmetric key
176+
## Encryption and decryption with a symmetric key
177177

178-
### Server Side Decryption
178+
### Server-side decryption
179179

180180
By default, server-side encryption is enabled. Use the following steps to enable decryption in your application.
181181

@@ -197,7 +197,7 @@ By default, server-side encryption is enabled. Use the following steps to enable
197197
--configuration spring.cloud.config.server.git.uri=$URI encrypt.key=randomKey
198198
```
199199

200-
### Client Side Decryption
200+
### Client-side decryption
201201

202202
You can use client side decryption of properties by following the steps:
203203

0 commit comments

Comments
 (0)