Skip to content

Commit 0f312c1

Browse files
committed
Clarity edits
1 parent e619e07 commit 0f312c1

File tree

2 files changed

+19
-11
lines changed

2 files changed

+19
-11
lines changed

articles/connectors/connectors-create-api-azureblobstorage.md

Lines changed: 19 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ To add a Blob trigger to a logic app workflow in multi-tenant Azure Logic Apps,
7373

7474
1. Provide the necessary information for the trigger.
7575

76-
1. For the **Container** property value, select the folder icon to browse for your blob storage container. Or, enter the path manually.
76+
1. For the **Container** property value, select the folder icon to browse for your blob storage container. Or, enter the path manually using the syntax **/<*container-name*>**, for example:
7777

7878
:::image type="content" source="./media/connectors-create-api-azureblobstorage/consumption-trigger-configure.png" alt-text="Screenshot showing Azure Blob trigger with parameters configuration.":::
7979

@@ -171,8 +171,8 @@ To add a Blob action to a logic app workflow in multi-tenant Azure Logic Apps, f
171171

172172
| Task | Blob path syntax |
173173
|------|------------------|
174-
| Get the content from a specific blob in the root folder. | **<*container-name*>/<*blob-name*>** |
175-
| Get the content from a specific blob in a subfolder. | **<*container-name*>/<*subfolder*>/<*blob-name*>** |
174+
| Get the content from a specific blob in the root folder. | **/<*container-name*>/<*blob-name*>** |
175+
| Get the content from a specific blob in a subfolder. | **/<*container-name*>/<*subfolder*>/<*blob-name*>** |
176176
|||
177177

178178
The following example shows the action setup that gets the content from a blob in the root folder:
@@ -207,15 +207,23 @@ To add an Azure Blob action to a logic app workflow in single-tenant Azure Logic
207207

208208
1. If you're prompted for connection details, [create a connection to your Azure Storage account](#connect-blob-storage-account).
209209

210-
1. Provide the necessary information for the action.
210+
1. Provide the necessary information for the action, which are the following values for the **Read Blob Content from Azure Storage** action:
211+
212+
| Property | Required | Description |
213+
|----------|----------|-------------|
214+
| **Container Name** | Yes | The name for the storage container that you want to use |
215+
| **Blob name** | Yes | The name or path for the blob that you want to use |
216+
||||
217+
218+
The following example shows the information for a specific blob in the root folder:
211219

212-
1. For **Container Name**, enter the path for the storage container that you want to use.
220+
:::image type="content" source="./media/connectors-create-api-azureblobstorage/standard-action-root-folder.png" alt-text="Screenshot showing Standard logic app in designer with Blob action setup for root folder.":::
213221

214-
1. For the **Blob name** property value, enter the path for the blob that you want to use.
222+
The following example shows the information for a specific blob in a subfolder:
215223

216-
:::image type="content" source="./media/connectors-create-api-azureblobstorage/standard-action-root-folder.png" alt-text="Screenshot showing Standard logic app in designer with Blob Storage action configuration.":::
224+
:::image type="content" source="./media/connectors-create-api-azureblobstorage/standard-action-subfolder.png" alt-text="Screenshot showing Standard logic app in designer with Blob action setup for subfolder.":::
217225

218-
1. Configure other action settings as needed.
226+
1. Configure any other action settings as needed.
219227

220228
1. On the designer toolbar, select **Save**.
221229

@@ -241,8 +249,8 @@ For example, if your storage account requires *access key* authorization, you ha
241249
|----------|----------|-------|-------------|
242250
| **Connection name** | Yes | <*connection-name*> | The name to use for your connection. |
243251
| **Authentication type** | Yes | - **Access Key** <br><br>- **Azure AD Integrated** <br><br>- **Logic Apps Managed Identity (Preview)** | The authentication type to use for your connection. For more information, review [Authentication types for triggers and actions that support authentication - Secure access and data](../logic-apps/logic-apps-securing-a-logic-app.md#authentication-types-for-triggers-and-actions-that-support-authentication). |
244-
| **Azure Storage Account name** | Yes, <br>but only for access key authentication | <*storage-account-name*> | The name for the Azure storage account where your blob container exists. <p>**Note**: To find the storage account name, open your storage account resource in the Azure portal. In the resource menu, under **Security + networking**, select **Access keys**. Under **Storage account name**, copy and save the name. |
245-
| **Azure Storage Account Access Key** | Yes, <br>but only for access key authentication | <*storage-account-access-key*> | The access key for your Azure storage account. <p>**Note**: To find the access key, open your storage account resource in the Azure portal. In the resource menu, under **Security + networking**, select **Access keys** > **Show keys**. Copy and save one of the key values. |
252+
| **Azure Storage Account name** | Yes, <br>but only for access key authentication | <*storage-account-name*> | The name for the Azure storage account where your blob container exists. <br><br><br><br>**Note**: To find the storage account name, open your storage account resource in the Azure portal. In the resource menu, under **Security + networking**, select **Access keys**. Under **Storage account name**, copy and save the name. |
253+
| **Azure Storage Account Access Key** | Yes, <br>but only for access key authentication | <*storage-account-access-key*> | The access key for your Azure storage account. <br><br><br><br>**Note**: To find the access key, open your storage account resource in the Azure portal. In the resource menu, under **Security + networking**, select **Access keys** > **Show keys**. Copy and save one of the key values. |
246254
|||||
247255

248256
The following example shows how a connection using access key authentication might appear:
@@ -262,7 +270,7 @@ Before you can configure your [Azure Blob trigger](#add-trigger) or [Azure Blob
262270
| Property | Required | Value | Description |
263271
|----------|----------|-------|-------------|
264272
| **Connection name** | Yes | <*connection-name*> | The name to use for your connection. |
265-
| **Azure Blob Storage Connection String** | Yes | <*storage-account*> | Select your storage account from the list, or provide a string. <p>**Note**: To find the connection string, go to the storage account's page. In the navigation menu, under **Security + networking**, select **Access keys** > **Show keys**. Copy one of the available connection string values. |
273+
| **Azure Blob Storage Connection String** | Yes | <*storage-account*> | Select your storage account from the list, or provide a string. <br><br><br><br>**Note**: To find the connection string, go to the storage account's page. In the navigation menu, under **Security + networking**, select **Access keys** > **Show keys**. Copy one of the available connection string values. |
266274
|||||
267275

268276
To create an Azure Blob Storage connection from a logic app workflow in single-tenant Azure Logic Apps, follow these steps:
23.6 KB
Loading

0 commit comments

Comments
 (0)