@@ -90,7 +90,7 @@ The following options are available for you to create a deployment slot:
90
90
91
91
### [ Azure CLI] ( #tab/azure-cli )
92
92
93
- To create a nonproduction deployment slot on your Standard logic app, run the following Azure CLI command:
93
+ Run the following Azure CLI command:
94
94
95
95
` az functionapp deployment slot create --name {logic-app-name} --resource-group {resource-group-name} --slot {slot-name} `
96
96
@@ -142,7 +142,7 @@ Unavailable at this time. Please follow the steps for Visual Studio Code or Azur
142
142
143
143
### [ Azure CLI] ( #tab/azure-cli )
144
144
145
- To deploy logic app changes to a deployment slot, run the following Azure CLI command:
145
+ Run the following Azure CLI command:
146
146
147
147
` az logicapp deployment source config-zip --name {logic-app-name} --resource-group {resource-group-name} --slot {slot-name} --src {deployment-package-local-path} `
148
148
@@ -166,7 +166,7 @@ After you deploy your changes, confirm that the changes appear in your deployed
166
166
167
167
## Swap a deployment slot with the production slot
168
168
169
- The following steps show how to swap a Standard logic app deployment slot with the current production slot.
169
+ The following options are available for you to swap a deployment slot with the current production slot:
170
170
171
171
### [ Portal] ( #tab/portal )
172
172
@@ -210,7 +210,7 @@ The following steps show how to swap a Standard logic app deployment slot with t
210
210
211
211
### [ Azure CLI] ( #tab/azure-cli )
212
212
213
- To swap your production slot with a deployment slot, run the following Azure CLI command:
213
+ Run the following Azure CLI command:
214
214
215
215
` az functionapp deployment slot swap --name {logic-app-name} --resource-group {resource-group-name} --slot {slot-name} --target-slot production `
216
216
@@ -226,7 +226,7 @@ After you swap slots, verify that the changes from your deployment slot now appe
226
226
227
227
## Delete a deployment slot
228
228
229
- The following options are available for you to remove a deployment slot from your Standard logic app resource.
229
+ The following options are available for you to delete a deployment slot from your Standard logic app resource.
230
230
231
231
### [ Portal] ( #tab/portal )
232
232
@@ -262,7 +262,7 @@ The following options are available for you to remove a deployment slot from you
262
262
263
263
### [ Azure CLI] ( #tab/azure-cli )
264
264
265
- To delete a deployment slot from your deployed Standard logic app resource, run the following Azure CLI command:
265
+ Run the following Azure CLI command:
266
266
267
267
` az functionapp deployment slot delete --name {logic-app-name} --resource-group {resource-group-name} --slot {slot-name} --target-slot production `
268
268
0 commit comments