You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/spring-apps/how-to-enterprise-application-configuration-service.md
+7-6Lines changed: 7 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -50,7 +50,7 @@ The following table describes properties for each entry.
50
50
51
51
### Pattern
52
52
53
-
Configuration is pulled from Git backends by using what you define in a pattern. A pattern is a combination of *{application}/{profile}* as described in the following guidelines.
53
+
Configuration is pulled from Git backends using what you define in a pattern. A pattern is a combination of *{application}/{profile}* as described in the following guidelines.
54
54
55
55
-*{application}* - The name of an application whose configuration you're retrieving. The value `application` is considered the default application and includes configuration information shared across multiple applications. Any other value refers to a specific application and includes properties for both the specific application and shared properties for the default application.
56
56
-*{profile}* - Optional. The name of a profile whose properties you may be retrieving. An empty value, or the value `default`, includes properties that are shared across profiles. Non-default values include properties for the specified profile and properties for the default profile.
@@ -82,7 +82,7 @@ The following image shows the three types of repository authentication supported
|`Private key`| Yes | The private key that identifies the Git user. Passphrase-encrypted private keys aren't supported. |
84
84
|`Host key`| No | The host key of the Git server. If you've connected to the server via Git on the command line, the host key is in your *.ssh/known_hosts* file. Don't include the algorithm prefix, because it's specified in `Host key algorithm`. |
85
-
|`Host key algorithm`| No | The algorithm for `HostKey`: one of `ssh-dss`, `ssh-rsa`, `ecdsa-sha2-nistp256`, `ecdsa-sha2-nistp384`, and `ecdsa-sha2-nistp521`. Required if supplying `Host key`. |
85
+
|`Host key algorithm`| No | The algorithm for `hostKey`: one of `ssh-dss`, `ssh-rsa`, `ecdsa-sha2-nistp256`, `ecdsa-sha2-nistp384`, and `ecdsa-sha2-nistp521`. (Required if supplying `Host key`). |
86
86
|`Strict host key checking`| No | Optional value that indicates whether the backend should be ignored if it encounters an error when using the provided `Host key`. Valid values are `true` and `false`. The default value is `true`. |
87
87
88
88
> [!NOTE]
@@ -207,22 +207,23 @@ az spring app deploy \
207
207
208
208
## Enable/Disable Application Configuration Service after service creation
209
209
210
-
You can enable and disable Application Configuration Service after service creation using Azure portal or Azure CLI. Before disabling it, it's required to unbind all of your apps to Application Configuration Service.
210
+
You can enable and disable Application Configuration Service after service creation using the Azure portal or Azure CLI. Before disabling Application Configuration Service, you're required to unbind all of your apps to it.
211
211
212
212
### [Azure portal](#tab/Portal)
213
213
214
-
Use the following steps to enable/disable Application Configuration Service using the Azure portal:
214
+
Use the following steps to enable or disable Application Configuration Service using the Azure portal:
215
215
216
216
1. Navigate to your service resource, and then select **Application Configuration Service**.
217
+
217
218
1. Select **Manage**.
218
219
219
-
1.Check/Uncheck the **Enable Application Configuration Service** checkbox, and then select **Save**.
220
+
1.Select or unselect the **Enable Application Configuration Service**, and then select **Save**.
220
221
221
222
1. You can then view the state of Application Configuration Service on the **Application Configuration Service**.
222
223
223
224
### [Azure CLI](#tab/Azure-CLI)
224
225
225
-
Use the following Azure CLI commands to enable/disable Application Configuration Service:
226
+
Use the following Azure CLI commands to enable or disable Application Configuration Service:
226
227
227
228
```azurecli
228
229
az spring application-configuration-service create \
@@ -453,22 +453,21 @@ In this way, you can obtain detailed information from the program as needed.
453
453
454
454
## Enable/Disable Service Registry after service creation
455
455
456
-
You can enable/disable Service Registry after service creation using Azure portal or Azure CLI. Before disabling it, it's required to unbind all of your apps to Service Registry.
456
+
You can enable and disable Service Registry after service creation using the Azure portal or Azure CLI. Before disabling Sevice Registry, you're required to unbind all of your apps to it.
457
457
458
458
### [Azure portal](#tab/Portal)
459
459
460
-
Use the following steps to enable/disable Service Registry using the Azure portal:
460
+
Use the following steps to enable or disable Service Registry using the Azure portal:
461
461
462
462
1. Navigate to your service resource, and then select **Service Registry**.
463
463
1. Select **Manage**.
464
-
465
-
1. Check/Uncheck the **Enable Service Registry** checkbox, and then select **Save**.
464
+
1. Select or unselect the **Enable Service Registry**, and then select **Save**.
466
465
467
466
1. You can then view the state of Service Registry on the **Service Registry**.
468
467
469
468
### [Azure CLI](#tab/Azure-CLI)
470
469
471
-
Use the following Azure CLI commands to enable/disable Service Registry:
470
+
Use the following Azure CLI commands to enable or disable Service Registry:
@@ -161,22 +161,22 @@ Use the following steps to try out APIs:
161
161
162
162
## Enable/Disable API portal after service creation
163
163
164
-
You can enable/disable API portal after service creation using Azure portal or Azure CLI. Before disabling it, it's required to unassign its endpoint.
164
+
You can enable and disable API portal after service creation using the Azure portal or Azure CLI. Before disabling API portal, you're required to unassign its endpoint.
165
165
166
166
### [Azure portal](#tab/Portal)
167
167
168
-
Use the following steps to enable/disable API portal using the Azure portal:
168
+
Use the following steps to enable or disable API portal using the Azure portal:
169
169
170
170
1. Navigate to your service resource, and then select **API portal**.
171
171
1. Select **Manage**.
172
172
173
-
1.Check/Uncheck the **Enable API portal** checkbox, and then select **Save**.
173
+
1.Select or unselect the **Enable API portal**, and then select **Save**.
174
174
175
175
1. You can then view the state of API portal on the **API portal**.
176
176
177
177
### [Azure CLI](#tab/Azure-CLI)
178
178
179
-
Use the following Azure CLI commands to enable/disable API portal:
179
+
Use the following Azure CLI commands to enable or disable API portal:
@@ -256,22 +256,22 @@ az spring gateway route-config create \
256
256
257
257
## Enable/Disable Spring Cloud Gateway after service creation
258
258
259
-
You can enable/disable Spring Cloud Gateway after service creation using Azure portal or Azure CLI. Before disabling it, it's required to unassign its endpoint and remove all route configs.
259
+
You can enable and disable Spring Cloud Gateway after service creation using Azure portal or Azure CLI. Before disabling Spring Cloud Gateway, you're required to unassign its endpoint and remove all route configs.
260
260
261
261
### [Azure portal](#tab/Portal)
262
262
263
-
Use the following steps to enable/disable Spring Cloud Gateway using the Azure portal:
263
+
Use the following steps to enable or disable Spring Cloud Gateway using the Azure portal:
264
264
265
265
1. Navigate to your service resource, and then select **Spring Cloud Gateway**.
266
266
1. Select **Manage**.
267
267
268
-
1. Check/Uncheck the **Enable Spring Cloud Gateway** checkbox, and then select **Save**.
268
+
1. Select or unselect the **Enable Spring Cloud Gateway**, and then select **Save**.
269
269
270
270
1. You can then view the state of Spring Cloud Gateway on the **Spring Cloud Gateway**.
271
271
272
272
### [Azure CLI](#tab/Azure-CLI)
273
273
274
-
Use the following Azure CLI commands to enable/disable Spring Cloud Gateway:
274
+
Use the following Azure CLI commands to enable or disable Spring Cloud Gateway:
0 commit comments