Skip to content

Commit 227ad1c

Browse files
author
ecfan
committed
Fix Acrolinx issues
1 parent 64749c6 commit 227ad1c

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

articles/logic-apps/create-parameters-workflows.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ ms.date: 08/06/2024
1414

1515
In Azure Logic Apps, you can abstract values that might change in workflows across development, test, and production environments by defining *parameters*. When you use parameters rather than environment-specific variables, you can initially focus more on designing your workflows, and insert your environment-specific variables later.
1616

17-
This article introduces how to create, use, and edit parameters for multi-tenant Consumption logic app workflows and for single-tenant Standard logic app workflows. You'll also learn how to manage environment variables.
17+
This article introduces how to create, use, and edit parameters for multitenant Consumption logic app workflows and for single-tenant Standard logic app workflows. You'll also learn how to manage environment variables.
1818

19-
For more information about multi-tenant and single-tenant Azure Logic Apps, review [Single-tenant versus multi-tenant in Azure Logic Apps](single-tenant-overview-compare.md).
19+
For more information about multitenant and single-tenant Azure Logic Apps, review [Single-tenant versus multitenant in Azure Logic Apps](single-tenant-overview-compare.md).
2020

2121
## Prerequisites
2222

@@ -36,7 +36,7 @@ For more information about multi-tenant and single-tenant Azure Logic Apps, revi
3636

3737
For both Consumption and Standard logic app workflows, you can define parameters using the designer. After you define the parameter, you can reference that parameter from any workflow or connection that's in the *same* logic app resource.
3838

39-
In multi-tenant Consumption logic app workflows, after you create and use parameters in the designer, you define and set the environment variables in your Azure Resource Manager template (ARM template) and template parameters files. In this scenario, you have to define and set the parameters *at deployment*, which means that even if you only have to change one variable, you have to redeploy your logic app's ARM template.
39+
In multitenant Consumption logic app workflows, after you create and use parameters in the designer, you define and set the environment variables in your Azure Resource Manager template (ARM template) and template parameters files. In this scenario, you have to define and set the parameters *at deployment*, which means that even if you only have to change one variable, you have to redeploy your logic app's ARM template.
4040

4141
In single-tenant Standard logic app workflows, you can work with environment variables both at runtime and deployment by using parameters *and* app settings. App settings contain global configuration options for *all the workflows* in the same logic app resource. For more information, review [Edit host and app settings for single-tenant based logic apps](edit-app-settings-host-settings.md).
4242

@@ -349,4 +349,4 @@ This example shows file settings for either ARM templates or Bicep templates:
349349

350350
## Related content
351351

352-
* [Single-tenant versus multi-tenant in Azure Logic Apps](single-tenant-overview-compare.md)
352+
* [Single-tenant versus multitenant in Azure Logic Apps](single-tenant-overview-compare.md)

articles/logic-apps/estimate-storage-costs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ If you have a workflow to estimate, get the JSON code for your workflow:
3535

3636
1. Go to the **Logic apps** service, and select your workflow.
3737

38-
1. In your logic app's menu, under **Development tools**, select **Logic app code view**.
38+
1. In the logic app menu, under **Development tools**, select **Logic app code view**.
3939

4040
1. Copy the workflow's JSON code.
4141

articles/logic-apps/logic-apps-examples-and-scenarios.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ Every workflow starts with a single [*trigger*](logic-apps-overview.md#logic-app
3737
| [**Request** trigger](../connectors/connectors-native-reqres.md) | Receive incoming HTTPS requests. |
3838
| [**HTTP Webhook** trigger](../connectors/connectors-native-webhook.md) | Subscribe to a service endpoint by registering a *callback URL* with that service. That way, the service can just notify the trigger when the specified event happens, so that the trigger doesn't need to poll the service. |
3939

40-
After you add the trigger, continue building your workflow by adding one or more actions. The following quickstarts help you build your first Consumption logic app workflow, which runs in global, multi-tenant Azure Logic Apps:
40+
After you add the trigger, continue building your workflow by adding one or more actions. The following quickstarts help you build your first Consumption logic app workflow, which runs in global, multitenant Azure Logic Apps:
4141

42-
* [Quickstart: Create an example Consumption logic app workflow in multi-tenant Azure Logic Apps - Azure portal](quickstart-create-example-consumption-workflow.md)
42+
* [Quickstart: Create an example Consumption logic app workflow in multitenant Azure Logic Apps - Azure portal](quickstart-create-example-consumption-workflow.md)
4343
* [Quickstart: Create automated tasks, processes, and workflows by using Azure Logic Apps - Visual Studio](quickstart-create-logic-apps-with-visual-studio.md)
4444
* [Quickstart: Create and manage automated logic app workflows by using Visual Studio Code](quickstart-create-logic-apps-visual-studio-code.md)
4545

@@ -73,7 +73,7 @@ For enterprise integration solutions and seamless communication between organiza
7373

7474
## Access Azure virtual network resources
7575

76-
Sometimes, your logic app workflow might need access to secured resources, such as virtual machines (VMs) in an Azure virtual network. To directly access such resources, [create a Standard logic app workflow](create-single-tenant-workflows-azure-portal.md). This type of logic app workflow runs in single-tenant Azure Logic Apps, separately from Consumption logic app workflows in multi-tenant Azure Logic Apps, and uses dedicated storage and other resources. With this option, you can reduce the impact that other Azure tenants might have on your apps' performance, which is also known as the "noisy neighbors" effect.
76+
Sometimes, your logic app workflow might need access to secured resources, such as virtual machines (VMs) in an Azure virtual network. To directly access such resources, [create a Standard logic app workflow](create-single-tenant-workflows-azure-portal.md). This type of logic app workflow runs in single-tenant Azure Logic Apps, separately from Consumption logic app workflows in multitenant Azure Logic Apps, and uses dedicated storage and other resources. With this option, you can reduce the impact that other Azure tenants might have on your apps' performance, which is also known as the "noisy neighbors" effect.
7777

7878
## Deploy, manage, and monitor logic app workflows
7979

0 commit comments

Comments
 (0)