Skip to content

Commit 06f5c2f

Browse files
committed
remove merge markers
1 parent 6bc9347 commit 06f5c2f

File tree

1 file changed

+0
-18
lines changed

1 file changed

+0
-18
lines changed

articles/container-apps/dapr-overview.md

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -99,13 +99,7 @@ Based on your needs, you can "plug in" certain Dapr component types like state s
9999
100100
# [YAML](#tab/yaml)
101101

102-
<<<<<<< HEAD
103102
When defining a Dapr component via YAML, you'll pass your component manifest into the Azure CLI. For example, deploy a `pubsub.yaml` component using the following command:
104-
=======
105-
When defining a Dapr component via YAML, you'll pass your component manifest into the Azure CLI. When configuring multiple components, you'll need to create a separate YAML file and run the Azure CLI command for each component.
106-
107-
For example, deploy a `pubsub.yaml` component using the following command:
108-
>>>>>>> 991603887fda83f4d070c7fc3faca46269118aa3
109103

110104
```azurecli
111105
az containerapp env dapr-component set --name ENVIRONMENT_NAME --resource-group RESOURCE_GROUP_NAME --dapr-component-name pubsub --yaml "./pubsub.yaml"
@@ -131,13 +125,7 @@ scopes:
131125
132126
# [Bicep](#tab/bicep)
133127
134-
<<<<<<< HEAD
135128
This resource defines a Dapr component called `dapr-pubsub` via Bicep. The Dapr component is defined as a child resource of your Container Apps environment. The `dapr-pubsub` component is scoped to the Dapr-enabled container apps with app IDs `publisher-app` and `subscriber-app`:
136-
=======
137-
This resource defines a Dapr component called `dapr-pubsub` via Bicep. The Dapr component is defined as a child resource of your Container Apps environment. To define multiple components, you can add a `daprComponent` resource for each Dapr component.
138-
139-
The `dapr-pubsub` component is scoped to the Dapr-enabled container apps with app IDs `publisher-app` and `subscriber-app`:
140-
>>>>>>> 991603887fda83f4d070c7fc3faca46269118aa3
141129

142130
```bicep
143131
resource daprComponent 'daprComponents@2022-03-01' = {
@@ -168,13 +156,7 @@ resource daprComponent 'daprComponents@2022-03-01' = {
168156

169157
# [ARM](#tab/arm)
170158

171-
<<<<<<< HEAD
172159
This resource defines a Dapr component called `dapr-pubsub` via ARM. The Dapr component is defined as a child resource of your Container Apps environment. The `dapr-pubsub` component will be scoped to the Dapr-enabled container apps with app IDs `publisher-app` and `subscriber-app`:
173-
=======
174-
A Dapr component is defined as a child resource of your Container Apps environment. To define multiple components, you can add a `daprComponent` resource for each Dapr component.
175-
176-
This resource defines a Dapr component called `dapr-pubsub` via ARM. The `dapr-pubsub` component will be scoped to the Dapr-enabled container apps with app IDs `publisher-app` and `subscriber-app`:
177-
>>>>>>> 991603887fda83f4d070c7fc3faca46269118aa3
178160

179161
```json
180162
{

0 commit comments

Comments
 (0)