Skip to content
This repository was archived by the owner on Aug 18, 2021. It is now read-only.

ServiceBus

Gustavo Denis edited this page Oct 31, 2019 · 1 revision
Main > Using Liquid for building your application > Set up configuration per environment > ServiceBus

Configure each ServiceBus account used as Message Bus as the example bellow:

  "ServiceBus_FOO": {
    "ConnectionString": "Endpoint=sb://foo.servicebus.windows.net/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=yn3efRbOxNsqJ/HU=;"
  },
  "ServiceBus_LEGACY": {
    "ConnectionString": "Endpoint=sb://legacy_foo.servicebus.windows.net/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=yn3efRbOxNsqJ/HU=;"
  }, 

Where:

  • [ServiceBusAccount]: is the nickname for the ServiceBus account. Use a suffix for each separate account used inside microservice for both receiving and sending messages.

Clone this wiki locally