You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/azure-signalr/howto-enable-geo-replication.md
+59-5Lines changed: 59 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -51,18 +51,72 @@ With the new geo-replication feature, Contoso can now establish a replica in Can
51
51

52
52
53
53
## Create a SignalR replica
54
-
54
+
# [Portal](#tab/Portal)
55
55
To create a replica, Navigate to the SignalR **Replicas** blade on the Azure portal and click **Add** to create a replica. It will be automatically enabled upon creation.
56
56
57
57

58
58
59
-
> [!NOTE]
60
-
> * Geo-replication is a feature available in premium tier.
61
-
> * A replica is considered a separate resource when it comes to billing. See [Pricing and resource unit](#pricing-and-resource-unit) for more details.
62
-
63
59
After creation, you would be able to view/edit your replica on the portal by clicking the replica name.
64
60
65
61

62
+
# [Bicep](#tab/Bicep)
63
+
64
+
Use Visual Studio Code or your favorite editor to create a file with the following content and name it main.bicep:
65
+
66
+
```bicep
67
+
@description('The name for your SignalR service')
68
+
param primaryName string = 'contoso'
69
+
70
+
@description('The region in which to create your SignalR service')
71
+
param primaryLocation string = 'eastus'
72
+
73
+
@description('Unit count of your SignalR service')
0 commit comments