mirror of https://github.com/dapr/docs.git
Add quotes to the connectionString
Adding quotes to the connectionString for Service Bus to work
This commit is contained in:
parent
0d52ce53a4
commit
0b3320b589
|
@ -9,7 +9,7 @@ spec:
|
||||||
type: bindings.azure.servicebusqueues
|
type: bindings.azure.servicebusqueues
|
||||||
metadata:
|
metadata:
|
||||||
- name: connectionString
|
- name: connectionString
|
||||||
value: sb://************
|
value: "sb://************"
|
||||||
- name: queueName
|
- name: queueName
|
||||||
value: queue1
|
value: queue1
|
||||||
```
|
```
|
||||||
|
@ -17,4 +17,4 @@ spec:
|
||||||
- `connectionString` is the Service Bus connection string.
|
- `connectionString` is the Service Bus connection string.
|
||||||
- `queueName` is the Service Bus queue name.
|
- `queueName` is the Service Bus queue name.
|
||||||
|
|
||||||
> **Note:** In production never place passwords or secrets within Dapr components. For information on securely storing and retrieving secrets refer to [Setup Secret Store](../../../howto/setup-secret-store)
|
> **Note:** In production never place passwords or secrets within Dapr components. For information on securely storing and retrieving secrets refer to [Setup Secret Store](../../../howto/setup-secret-store)
|
||||||
|
|
Loading…
Reference in New Issue