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
@@ -275,7 +286,7 @@ This is the `run.ps1` file that implements the function code:
275
286
276
287
---
277
288
278
-
After you've verified your functions run locally, it's time to publish them to Azure.
289
+
After you verified your functions run locally, it's time to publish them to Azure.
279
290
280
291
## Deploy to Azure
281
292
@@ -294,11 +305,12 @@ This project is configured to use the `azd up` command to deploy this project to
294
305
295
306
1. When prompted, provide these required deployment parameters:
296
307
297
-
+ _Environment name_:
298
-
+ _Azure location_: Azure region in which to create the resource group that contains the new Azure resources. Only regions that currently support the Flex Consumption plan are shown.
299
308
+ _Azure subscription_: Subscription in which your resources are created.
309
+
+ _Azure location_: Azure region in which to create the resource group that contains the new Azure resources. Only regions that currently support the Flex Consumption plan are shown.
300
310
301
-
The `azd up` command applies your reponse to these prompts to the Bicep configuration files and create Azure resources. Your response to the prompts are stored, and you can run the `azd up` command as many times as you like to both provision and deploy updates to your application. During subsequent executions, existing resources are skipped, but deployed code files are always overwritten by the latest deployment package. Use the `azd env get-values` command to review all of the variables used when creating your
311
+
The `azd up`command applies your response to these prompts to the Bicep configuration files and create Azure resources.
312
+
313
+
302
314
303
315
these deployment tasks:
304
316
@@ -310,11 +322,13 @@ these deployment tasks:
310
322
* Virtual network to securely run both the functionapp and the other Azure resources.
311
323
* Package and deploy your code to the deployment container ([`azd deploy`](/azure/developer/azure-developer-cli/reference#azd-deploy)).
312
324
313
-
1. Create the Azure resources required to host the project in a function app running in the Flex Consmption plan.
325
+
1. Create the Azure resources required to host the project in a functionapp running in the Flex Consumption plan.
314
326
1. Package and deploy this code project to the deployment container after the resources are provisioned. The app is then started and runs in the deployment container.
315
327
316
328
After the command completes successfully, you see links to the resources created.
317
329
330
+
Your responses to the prompts are stored, and you can run the `azd up`command as many times as you like to both provision and deploy updates to your application. During subsequent executions, existing resources are skipped, but deployed code files are always overwritten by the latest deployment package. Use the `azd env get-values`command to review all of the variables used when creating Azure resources.
331
+
318
332
319
333
320
334
## Invoke the function on Azure
@@ -335,7 +349,7 @@ Because your function uses an HTTP trigger, you invoke it by making an HTTP requ
335
349
336
350
## Clean up resources
337
351
338
-
When you are done working with your function app and related resources, you can use this command to delete the function app and its related resources from Azure and avoid incurring any further costs:
352
+
When you're done working with your function app and related resources, you can use this command to delete the function app and its related resources from Azure and avoid incurring any further costs:
2. Enter an environment name when prompted, such as `flexquickstart`. In `azd`, the environment is used to maintain a unique deployment context for your app, and you can define more than one. It's also used in the name of the resource group you create in Azure.
10
+
11
+
After you specify the environment, `azd` clones the template files to your machine and initializes a local project.
0 commit comments