Skip to content

Commit 332be31

Browse files
committed
edits
1 parent 296f6d7 commit 332be31

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

articles/azure-functions/migration/lambda-functions-migration-assess.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ The following tables compare AWS Lambda concepts, resources, and properties with
7272

7373
| AWS Lambda | Azure Functions |
7474
|---|---|
75-
| `https://<url-id>.lambda-url.<region>.on.aws` | - `<appname>.azurewebsites.net` (original, global default hostname) </br> - `<appname>-<randomhash>.<Region>.azurewebsites.net` (new, unique default hostname) |
75+
| `https://<url-id>.lambda-url.<region>.on.aws` | - `<appname>.azurewebsites.net` (original, global default hostname) </br><br> - `<appname>-<randomhash>.<Region>.azurewebsites.net` (new, unique default hostname) |
7676

7777
### Networking
7878

@@ -106,7 +106,7 @@ The following tables compare AWS Lambda concepts, resources, and properties with
106106

107107
| AWS Lambda | Azure Functions |
108108
|---|---|
109-
| - Pay per use for the total invocation count and for the GB/s for each instance (with a fixed concurrency of 1) <br> - 1 ms increments <br> - 400,000 Gbps free tier | - Pay per use for the total invocation count and for the GB/s of each instance (with configurable concurrent invocations) <br> - 100 ms increments <br> - 100,000 Gbps free tier <br> - [Consumption-based costs](/azure/azure-functions/functions-consumption-costs#consumption-based-costs) |
109+
| - Pay per use for the total invocation count and for the GB/s for each instance (with a fixed concurrency of 1) <br><br> - 1 ms increments <br><br> - 400,000 Gbps free tier | - Pay per use for the total invocation count and for the GB/s of each instance (with configurable concurrent invocations) <br><br> - 100 ms increments <br><br> - 100,000 Gbps free tier <br><br> - [Consumption-based costs](/azure/azure-functions/functions-consumption-costs#consumption-based-costs) |
110110

111111
### Source code storage
112112

@@ -118,13 +118,13 @@ The following tables compare AWS Lambda concepts, resources, and properties with
118118

119119
| AWS Lambda feature | Azure Functions feature |
120120
|---|---|
121-
| - SAM CLI <br> - [LocalStack](https://github.com/localstack/localstack) | - Azure Functions Core Tools <br> - Visual Studio Code <br> - Visual Studio <br> - GitHub Codespaces <br> - VSCode.dev <br> - Maven <br> - [Code and test Azure Functions locally](/azure/azure-functions/functions-develop-local) |
121+
| - SAM CLI <br><br> - [LocalStack](https://github.com/localstack/localstack) | - Azure Functions Core Tools <br><br> - Visual Studio Code <br><br> - Visual Studio <br><br> - GitHub Codespaces <br><br> - VSCode.dev <br><br> - Maven <br><br> - [Code and test Azure Functions locally](/azure/azure-functions/functions-develop-local) |
122122

123123
### Deployment
124124

125125
| Feature | AWS Lambda | Azure Functions |
126126
|---|---|---|
127-
| Deployment package | - ZIP file <br> - Container image | ZIP file (For container image deployment, use the dedicated or premium SKU.) |
127+
| Deployment package | - ZIP file <br><br> - Container image | ZIP file (For container image deployment, use the dedicated or premium SKU.) |
128128
| ZIP file size (console) | 50 MB maximum | 500 MB maximum for ZIP deployment |
129129
| ZIP file size (CLI/SDK) | 250 MB maximum for ZIP deployment, 500 MB maximum for unzipped | 500 MB maximum for ZIP deployment |
130130
| Container image size | 10 GB maximum | Container support with flexible storage via Azure |

articles/azure-functions/migration/lambda-functions-migration-migrate.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ The following snippets are examples of common SDK code. The AWS Lambda code maps
246246
:::column-end:::
247247
:::column span="":::
248248
249-
Azure Functions code (Trigger)
249+
Azure Functions code (trigger)
250250
251251
```
252252
import { app } from '@azure/functions';
@@ -344,7 +344,9 @@ Deployments follow a single path. After you build your project code and zip it i
344344
### Generate IaC files
345345

346346
- Use tools like Bicep, Azure Resource Manager templates, or Terraform to create IaC files to deploy Azure resources.
347+
347348
- Define resources such as Azure Functions, storage accounts, and networking components in your IaC files.
349+
348350
- Use this [IaC samples repository](https://github.com/Azure-Samples/azure-functions-flex-consumption-samples/tree/main/IaC) for samples that use Azure Functions recommendations and best practices.
349351

350352
### Use tools for refactoring

0 commit comments

Comments
 (0)