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
In your application code, you can access both [public key certificates and certificates that contain a private key that you add to Azure App Service.](configure-ssl-certificate.md). Your app code might act as a client and access an external service that requires certificate authentication. It might also need to perform cryptographic tasks. This article shows how to use public or private certificates in your application code.
20
+
In your application code, you can access both [public key certificates and certificates that contain a private key that you add to Azure App Service.](configure-ssl-certificate.md). Your app code might act as a client and access an external service that requires certificate authentication. It might also need to perform cryptographic tasks. This article shows how to use publicly or privately signed certificates in your application code.
21
21
22
22
This approach to using certificates in your code makes use of the Transport Layer Security (TLS) functionality in App Service, which requires your app to be in the Basic tier or higher. If your app is in the Free or Shared tier, you can [include the certificate file in your app repository](#load-a-certificate-from-a-file).
23
23
@@ -111,7 +111,7 @@ For languages that don't support or offer insufficient support for the Windows c
111
111
112
112
## Load a certificate from a file
113
113
114
-
If you need to load a certificate file that you upload manually, it's better to upload the certificate by using [File Transfer Protocol Secure (FTPS)](deploy-ftp.md) instead of [Git](deploy-local-git.md), for example. Keep sensitive data like a private certificate out of source control.
114
+
If you need to load a certificate file that you upload manually, it's better to upload the certificate by using [File Transfer Protocol Secure (FTPS)](deploy-ftp.md) instead of [Git](deploy-local-git.md), for example. Keep sensitive data like certificate private keys out of source control.
115
115
116
116
ASP.NET and ASP.NET Core on Windows must access the certificate store even if you load a certificate from a file. To load a certificate file in a Windows .NET app, load the current user profile with the following command in <atarget="_blank"href="https://shell.azure.com" >Cloud Shell</a>:
117
117
@@ -140,7 +140,7 @@ To see how to load a TLS/SSL certificate from a file in Node.js, PHP, Python, or
140
140
141
141
The `WEBSITE_LOAD_CERTIFICATES` app setting makes the specified certificates accessible to your Windows or Linux custom containers (including built-in Linux containers) as files. The files are found under the following directories:
142
142
143
-
| Container platform | Public certificates | Private certificates|
143
+
| Container platform | Public certificate files (no private key) | Certificate files that include a private key|
144
144
| - | - | - |
145
145
| Windows container |`C:\appservice\certificates\public`|`C:\appservice\certificates\private`|
146
146
| Linux container |`/var/ssl/certs`|`/var/ssl/private`|
Copy file name to clipboardExpand all lines: articles/app-service/overview-hosting-plans.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -35,7 +35,7 @@ The pricing tier of an App Service plan determines what App Service features you
35
35
| Category | Tiers | Description |
36
36
|:-|:-|:-|
37
37
| Shared compute | Free, Shared | Free and Shared, the two base tiers, run an app on the same Azure VM as other App Service apps, including apps of other customers. These tiers allocate CPU quotas to each app that runs on the shared resources. The resources can't scale out. These tiers are intended for only development and testing purposes. |
38
-
| Dedicated compute | Basic, Standard, Premium, PremiumV2, PremiumV3, PremiumV4 | The Basic, Standard, Premium, PremiumV2, PremiumV3, and PremiumV4 tiers run apps on dedicated Azure VMs. Only apps in the same App Service plan share the same compute resources. The higher the tier, the more VM instances that are available to you for scale-out. |
38
+
| Dedicated compute | Basic, Standard, Premium, PremiumV2, PremiumV3, PremiumV4 | The Basic, Standard, Premium, PremiumV2, PremiumV3, and PremiumV4 tiers run apps on dedicated Azure VMs. Only apps in the same App Service plan share the same compute resources (and those resources aren't shared with other customers). The higher the tier, the more VM instances that are available to you for scale-out. |
39
39
| Isolated | IsolatedV2 | The IsolatedV2 tier runs dedicated Azure VMs on dedicated Azure virtual networks. This tier provides network isolation on top of compute isolation to your apps. It provides the maximum scale-out capabilities. |
40
40
41
41
Each tier also provides a specific subset of App Service features. These features include custom domains and TLS/SSL certificates, autoscaling, deployment slots, backups, Azure Traffic Manager integration, and more. The higher the tier, the more features that are available. To find out which features are supported in each pricing tier, see the [App Service plan details](https://azure.microsoft.com/pricing/details/app-service/windows/#pricing).
If you work on Standard logic app workflows using the Azure portal, you might find yourself wanting to use Visual Studio Code instead at some point. When you switch to Visual Studio Code and install the Azure Logic Apps (Standard) extension, you get the expanded benefits available only with the extension, for example:
19
20
@@ -61,7 +62,7 @@ This guide shows how to download your Standard logic app as a zip file package f
61
62
62
63
1. In the Azure window, on the **Workspace** toolbar, open the **Azure Logic Apps** menu, and select **Create new logic app workspace from package...**.
63
64
64
-
:::image type="content" source="media/export-standard-logic-app-to-visual-studio-code/create-workspace-from-package.png" alt-text="Screenshot shows Visual Studio Code, Azure window, and Workspace toolbar with selected button for Azure Logic Apps, and selected option for Create new logic app workspace from package.":::
65
+
:::image type="content" source="media/export-standard-logic-app-to-visual-studio-code/create-workspace-from-package.png" alt-text="Screenshot shows Visual Studio Code, Azure window, Workspace toolbar with selected button for Azure Logic Apps, and selected option for Create new logic app workspace from package.":::
65
66
66
67
The **Create New Logic App Workspace from Package** prompt window opens so you can select the zip file package that you want to import.
67
68
@@ -71,7 +72,9 @@ This guide shows how to download your Standard logic app as a zip file package f
71
72
72
73
You're now prompted to select the folder where you want to create your workspace.
73
74
74
-
1. From the prompt list, select **Browse**. Find and select the local repository folder where you want to create your workspace. When you're done, choose **Select**. Follow the additional prompts to continue creating your workspace.
75
+
1. From the prompt list, select **Browse**. Find and select the local repository folder where you want to create your workspace. When you're done, choose **Select**.
76
+
77
+
1. Follow the subsequent prompts to continue creating your workspace.
75
78
76
79
1. Enter a name to use for your workspace.
77
80
@@ -107,6 +110,6 @@ If you have connections that use a managed identity, make sure that you update t
107
110
108
111
## Related content
109
112
110
-
For more information about managing your Standard logic app project in Visual Studio Code, see the following documentation:
113
+
For more information about managing your Standard logic app project in Visual Studio Code, see:
111
114
112
115
-[Create Standard logic app workflow in single-tenant Azure Logic Apps using Visual Studio Code](/azure/logic-apps/create-single-tenant-workflows-visual-studio-code)
Copy file name to clipboardExpand all lines: articles/logic-apps/logic-apps-enterprise-integration-edifact.md
+12-10Lines changed: 12 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,17 +1,19 @@
1
1
---
2
-
title: Exchange EDIFACT messages in B2B workflows
3
-
description: Exchange EDIFACT messages between partners by creating workflows with Azure Logic Apps and Enterprise Integration Pack.
2
+
title: Exchange EDIFACT Messages in B2B Workflows
3
+
description: Exchange EDIFACT messages between partners for B2B workflows in Azure Logic Apps.
4
4
services: logic-apps
5
5
ms.suite: integration
6
6
author: divyaswarnkar
7
7
ms.author: divswa
8
-
ms.reviewer: estfan, azla
8
+
ms.reviewers: estfan, azla
9
9
ms.topic: how-to
10
-
ms.date: 02/10/2025
10
+
ms.update-cycle: 1095-days
11
+
ms.date: 03/11/2026
11
12
ms.custom: sfi-image-nochange
13
+
# Customer intent: As a B2B integration developer who works with Azure Logic Apps, I want to set up message communication between trading partners in enterprise workflows.
12
14
---
13
15
14
-
# Exchange EDIFACT messages using workflows in Azure Logic Apps
16
+
# Exchange EDIFACT messages for B2B workflows in Azure Logic Apps
15
17
16
18
To send and receive EDIFACT messages in workflows that you create using Azure Logic Apps, use the **EDIFACT** connector, which provides operations that support and manage EDIFACT communication.
17
19
@@ -57,7 +59,7 @@ The **EDIFACT** built-in connector has the following actions, which are similar
57
59
58
60
## Prerequisites
59
61
60
-
* An Azure account and subscription. If you don't have a subscription yet, [sign up for a free Azure account](https://azure.microsoft.com/pricing/purchase-options/azure-account?cid=msft_learn).
62
+
* An Azure account and subscription. [Get a free Azure account](https://azure.microsoft.com/pricing/purchase-options/azure-account?cid=msft_learn).
61
63
62
64
* An [integration account resource](./enterprise-integration/create-integration-account.md) where you define and store artifacts, such as trading partners, agreements, certificates, and so on, for use in your enterprise integration and B2B workflows. This resource has to meet the following requirements:
63
65
@@ -254,15 +256,15 @@ The **EDIFACT** managed connector action named **Decode EDIFACT message** action
254
256
255
257
* Split Interchange as transaction sets - suspend interchange on error.
256
258
257
-
The decoding action splits the interchange into transaction sets and parses each transaction set. If one or more transaction sets in the interchange fail validation, the action outputs all the transaction sets in that interchange to `badMessages`.
259
+
The decoding action splits the interchange into transaction sets and parses each transaction set. If one or more transaction sets in the interchange fail validation, the action outputs the transaction sets in that interchange to `badMessages`.
258
260
259
261
* Preserve Interchange - suspend transaction sets on error.
260
262
261
263
The decoding action preserves the interchange and processes the entire batched interchange. The action outputs only those transaction sets that fail validation to `badMessages`, and outputs the remaining transactions sets to `goodMessages`.
262
264
263
265
* Preserve Interchange - suspend interchange on error.
264
266
265
-
The decoding action preserves the interchange and processes the entire batched interchange. If one or more transaction sets in the interchange fail validation, the action outputs all the transaction sets in that interchange to `badMessages`.
267
+
The decoding action preserves the interchange and processes the entire batched interchange. If one or more transaction sets in the interchange fail validation, the action outputs the transaction sets in that interchange to `badMessages`.
266
268
267
269
* Generate a technical acknowledgment, functional acknowledgment, or both, if configured.
268
270
@@ -380,6 +382,6 @@ To handle an EDIFACT document or process an EDIFACT message that has a UN2.5 seg
380
382
381
383

Copy file name to clipboardExpand all lines: articles/logic-apps/move-logic-app-resources.md
+7-5Lines changed: 7 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,11 +1,13 @@
1
1
---
2
-
title: Move logic apps across subscriptions, resource groups, or regions
2
+
title: Move Logic Apps to Other Subscriptions, Resource Groups, or Regions
3
3
description: Migrate logic apps or integration accounts to other Azure subscriptions, resource groups, or locations (regions).
4
4
services: logic-apps
5
5
ms.suite: integration
6
-
ms.reviewer: estfan, azla
6
+
ms.reviewers: estfan, azla
7
7
ms.topic: how-to
8
-
ms.date: 02/19/2025
8
+
ms.update-cycle: 365-days
9
+
ms.date: 03/11/2026
10
+
# Customer intent: As a developer who works with Azure Logic Apps, I want to move or migrate my logic app resources to other Azure resource groups, subscriptions, or regions.
9
11
---
10
12
11
13
# Move logic app resources to other Azure resource groups, regions, or subscriptions
@@ -78,7 +80,7 @@ When you want to move a logic app to a different region, your options depend on
78
80
79
81
* If you created and deployed your logic app by using continuous integration (CI) and continuous delivery (CD) tools, such as Azure Pipelines in Azure DevOps, you can deploy your app to another region by using those tools.
80
82
81
-
For more information about deployment templates for logic apps, see these topics:
83
+
For more information about deployment templates for logic apps, see these articles:
82
84
83
85
*[Overview: Automate deployment for Azure Logic Apps by using Azure Resource Manager templates](../logic-apps/logic-apps-azure-resource-manager-templates-overview.md)
84
86
*[Find, open, and download your logic app from the Azure portal into Visual Studio](../logic-apps/manage-logic-apps-with-visual-studio.md)
@@ -99,7 +101,7 @@ The template that you get from Visual Studio includes only the resource definiti
99
101
100
102
1. In the [Azure portal](https://portal.azure.com), find and open your integration account.
101
103
102
-
1. On your integration account's menu, under **Settings**, select **Export template**.
104
+
1. On the integration account sidebar, under **Settings**, select **Export template**.
103
105
104
106
1. On the toolbar, select **Download**, and save the template.
0 commit comments