mirror of https://github.com/dapr/docs.git
886 B
886 B
Azure CosmosDB Binding Spec
apiVersion: dapr.io/v1alpha1
kind: Component
metadata:
name: <NAME>
namespace: <NAMESPACE>
spec:
type: bindings.azure.cosmosdb
metadata:
- name: url
value: https://******.documents.azure.com:443/
- name: masterKey
value: *****
- name: database
value: db
- name: collection
value: collection
- name: partitionKey
value: message
urlis the CosmosDB url.masterKeyis the CosmosDB account master key.databaseis the name of the CosmosDB database.collectionis name of the collection inside the database.partitionKeyis the name of the partitionKey to extract from the payload.
Note: In production never place passwords or secrets within Dapr components. For information on securely storing and retrieving secrets refer to Setup Secret Store