Skip to content

Commit b377a36

Browse files
committed
acrolinx
Signed-off-by: Hannah Hunter <[email protected]>
1 parent f607022 commit b377a36

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

articles/container-apps/dapr-component-connection.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ ms.author: hannahhunter
66
ms.reviewer: nickgreenf
77
ms.service: azure-container-apps
88
ms.topic: how-to
9-
ms.date: 08/02/2024
9+
ms.date: 12/11/2024
1010
ms.custom: template-tutorial, service-connector, build-2023, engagement
1111
---
1212

1313
# Connect to Azure services via Dapr components in the Azure portal
1414

1515
You can easily connect Dapr APIs to [backing Azure services](./dapr-overview.md#dapr-components) using a combination of [Service Connector](../service-connector/overview.md) and [Dapr](https://docs.dapr.io/). This feature creates Dapr components on your behalf with valid metadata and authenticated identity to access the Azure service.
1616

17-
In this guide, you'll connect Dapr Pub/Sub API to an Azure Service Bus by:
17+
In this guide, you connect Dapr Pub/Sub API to an Azure Service Bus by:
1818
> [!div class="checklist"]
1919
> - Select pub/sub as the API
2020
> - Specify Azure Service Bus as the service and required properties like namespace, queue name, and identity
@@ -45,7 +45,7 @@ For example, for a pub/sub Azure Service Bus component, you'll start with the fo
4545

4646
| Field | Example | Description |
4747
| ----- | ------- | ----------- |
48-
| Component name | mycomponent | Enter a name for your Dapr component. The name must match the component referenced in your application code. |
48+
| Component name | `mycomponent` | Enter a name for your Dapr component. The name must match the component referenced in your application code. |
4949
| Building block | Pub/sub | Select the [building block/API](https://docs.dapr.io/developing-applications/building-blocks/) for your component from the drop-down. |
5050
| Component type | Service Bus | Select a component type from the drop-down. |
5151

@@ -54,9 +54,9 @@ The component creation pane populates with different fields depending on the bui
5454
| Field | Example | Description |
5555
| ----- | ------- | ----------- |
5656
| Subscription | My subscription | Select your Azure subscription |
57-
| Namespace | mynamespace | Select the Service Bus namespace |
57+
| Namespace | `mynamespace` | Select the Service Bus namespace |
5858
| Authentication | User assigned managed identity | Select the subscription that contains the component you're looking for. Recommended: User assigned managed identity. |
59-
| User assigned managed identity | testidentity | Select an existing identity from the drop-down. If you don’t already have one, you can create a new managed identity client ID. |
59+
| User assigned managed identity | `testidentity` | Select an existing identity from the drop-down. If you don’t already have one, you can create a new managed identity client ID. |
6060

6161
:::image type="content" source="media/dapr-component-connection/add-pubsub-component.png" alt-text="Screenshot of the Azure platform showing the Basics tab of adding a Dapr Pub/sub component.":::
6262

articles/container-apps/enable-dapr.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Enable Dapr on an existing container app
3-
description: Learn more about enabling Dapr on your Azure Container App service to develop applications.
3+
description: Enable Dapr on your existing Azure Container App service.
44
ms.author: hannahhunter
55
author: hhunter-ms
66
ms.service: azure-container-apps
@@ -24,7 +24,7 @@ The following table outlines the currently supported list of Dapr sidecar config
2424
| `--enable-dapr` | `dapr.enabled` | Enables Dapr on the container app. |
2525
| `--dapr-app-port` | `dapr.appPort` | The port your application is listening on which is used by Dapr for communicating to your application |
2626
| `--dapr-app-protocol` | `dapr.appProtocol` | Tells Dapr which protocol your application is using. Valid options are `http` or `grpc`. Default is `http`. |
27-
| `--dapr-app-id` | `dapr.appId` | A unique Dapr identifier for your container app used for service discovery, state encapsulation and the pub/sub consumer ID. |
27+
| `--dapr-app-id` | `dapr.appId` | A unique Dapr identifier for your container app used for service discovery, state encapsulation, and the pub/sub consumer ID. |
2828
| `--dapr-max-request-size` | `dapr.httpMaxRequestSize` | Set the max size of request body http and grpc servers to handle uploading of large files. Default is 4 MB. |
2929
| `--dapr-read-buffer-size` | `dapr.httpReadBufferSize` | Set the max size of http header read buffer in to handle when sending multi-KB headers. The default 4 KB. |
3030
| `--dapr-api-logging` | `dapr.enableApiLogging` | Enables viewing the API calls from your application to the Dapr sidecar. |

articles/container-apps/microservices-dapr-azure-resource-manager.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ services: container-apps
55
author: hhunter-ms
66
ms.service: azure-container-apps
77
ms.topic: quickstart
8-
ms.date: 12/04/2024
8+
ms.date: 12/11/2024
99
ms.author: cshoe
1010
ms.custom: devx-track-bicep, devx-track-arm-template, devx-track-azurepowershell
1111
zone_pivot_groups: container-apps
1212
---
1313

1414
# Quickstart: Deploy a Dapr application to Azure Container Apps with an Azure Resource Manager or Bicep template
1515

16-
[Dapr](./dapr-overview.md) (Distributed Application Runtime) helps developers build resilient, reliable microservices. In this quickstart, you learn how to enable Dapr sidecars to run alongside microservices container apps that produce and consume messages and store them in an Azure Blob Storage state store. Using either Azure Resource Manager or Bicep templates, you'll:
16+
[Dapr](./dapr-overview.md) (Distributed Application Runtime) helps developers build resilient, reliable microservices. In this quickstart, you enable Dapr sidecars to run alongside two container apps that produce and consume messages, stored in an Azure Blob Storage state store. Using either Azure Resource Manager or Bicep templates, you'll:
1717

1818
> [!div class="checklist"]
1919
>
@@ -132,7 +132,7 @@ This command deploys:
132132
- A user-assigned identity with access to the Azure Blob storage via a Storage Data Contributor role assignment
133133
- A Dapr component of `"type": "state.azure.blobstorage"` scoped for use by the `nodeapp` for storing state.
134134
- The Dapr-enabled, headless `pythonapp` that invokes the `nodeapp` service using Dapr service invocation.
135-
- A Microsot Entra ID role assignment for the Node.js app used by the Dapr component to establish a connection to Blob storage.
135+
- A Microsoft Entra ID role assignment for the Node.js app used by the Dapr component to establish a connection to Blob storage.
136136

137137
## Verify the result
138138

@@ -202,7 +202,7 @@ nodeapp Got a new order! Order ID: 63 PrimaryResult 2021-10-22
202202

203203
## Clean up resources
204204

205-
Since `pythonapp` continuously makes calls to `nodeapp` with messages that get persisted into your configured state store, it is important to complete these cleanup steps to avoid ongoing billable operations.
205+
Since `pythonapp` continuously makes calls to `nodeapp` with messages that get persisted into your configured state store, it's important to complete these cleanup steps to avoid ongoing billable operations.
206206

207207
If you'd like to delete the resources created as a part of this walkthrough, run the following command.
208208

0 commit comments

Comments
 (0)