Skip to content

Commit 1f25d98

Browse files
committed
add queue
Signed-off-by: Hannah Hunter <[email protected]>
1 parent 7ef0eff commit 1f25d98

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/container-apps/dapr-overview.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ scopes:
246246
Once you've created a Dapr secret store using one of the above approaches, you can reference that secret store from other Dapr components in the same environment. In the following example, the `secretStoreComponent` field is populated with the name of the secret store specified above, where the `sb-root-connectionstring` is stored.
247247

248248
```yaml
249-
componentType: pubsub.azure.servicebus
249+
componentType: pubsub.azure.servicebus.queue
250250
version: v1
251251
secretStoreComponent: "my-secret-store"
252252
metadata:
@@ -269,7 +269,7 @@ az containerapp env dapr-component set --name ENVIRONMENT_NAME --resource-group
269269

270270
```yaml
271271
# pubsub.yaml for Azure Service Bus component
272-
componentType: pubsub.azure.servicebus
272+
componentType: pubsub.azure.servicebus.queue
273273
version: v1
274274
secretStoreComponent: "my-secret-store"
275275
metadata:
@@ -288,7 +288,7 @@ This resource defines a Dapr component called `dapr-pubsub` via Bicep. The Dapr
288288
resource daprComponent 'daprComponents@2022-03-01' = {
289289
name: 'dapr-pubsub'
290290
properties: {
291-
componentType: 'pubsub.azure.servicebus'
291+
componentType: 'pubsub.azure.servicebus.queue'
292292
version: 'v1'
293293
secretStoreComponent: 'my-secret-store'
294294
metadata: [
@@ -316,7 +316,7 @@ This resource defines a Dapr component called `dapr-pubsub` via ARM.
316316
"type": "daprComponents",
317317
"name": "dapr-pubsub",
318318
"properties": {
319-
"componentType": "pubsub.azure.servicebus",
319+
"componentType": "pubsub.azure.servicebus.queue",
320320
"version": "v1",
321321
"secretScoreComponent": "my-secret-store",
322322
"metadata": [

0 commit comments

Comments
 (0)