Skip to content

Commit cd8256b

Browse files
authored
Merge pull request #101635 from docohe/user/docohe/fix-follower2
Fix follower arm template documentation
2 parents 0ddff63 + 3cf3c6c commit cd8256b

File tree

1 file changed

+3
-15
lines changed

1 file changed

+3
-15
lines changed

articles/data-explorer/follower.md

Lines changed: 3 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -122,8 +122,7 @@ poller = kusto_management_client.attached_database_configurations.create_or_upda
122122

123123
### Attach a database using an Azure Resource Manager template
124124

125-
In this section, you learn how to create a follower cluster and attach a database to it by using an [Azure Resource Manager template](../azure-resource-manager/management/overview.md).
126-
If you already have a cluster, remove the `Microsoft.Kusto/clusters` resource from the resource list below.
125+
In this section, you learn to attach a database to an existing cluser by using an [Azure Resource Manager template](../azure-resource-manager/management/overview.md).
127126

128127
```json
129128
{
@@ -134,7 +133,7 @@ If you already have a cluster, remove the `Microsoft.Kusto/clusters` resource fr
134133
"type": "string",
135134
"defaultValue": "",
136135
"metadata": {
137-
"description": "Name of the follower cluster."
136+
"description": "Name of the cluster to which the database will be attached."
138137
}
139138
},
140139
"attachedDatabaseConfigurationsName": {
@@ -175,17 +174,6 @@ If you already have a cluster, remove the `Microsoft.Kusto/clusters` resource fr
175174
},
176175
"variables": {},
177176
"resources": [
178-
{
179-
"name": "[parameters('followerClusterName')]",
180-
"type": "Microsoft.Kusto/clusters",
181-
"sku": {
182-
"name": "Standard_D13_v2",
183-
"tier": "Standard",
184-
"capacity": 2
185-
},
186-
"apiVersion": "2019-09-07",
187-
"location": "[parameters('location')]"
188-
},
189177
{
190178
"name": "[concat(parameters('followerClusterName'), '/', parameters('attachedDatabaseConfigurationsName'))]",
191179
"type": "Microsoft.Kusto/clusters/attachedDatabaseConfigurations",
@@ -213,7 +201,7 @@ You can deploy the Azure Resource Manager template by [using the Azure portal](h
213201

214202
|**Setting** |**Description** |
215203
|---------|---------|
216-
|Follower Cluster Name | The name of the follower cluster. If the cluster name exists, remove the `Microsoft.Kusto/clusters` resource from the resource list in the ARM template. Otherwise, a new cluster will be created. |
204+
|Follower Cluster Name | The name of the follower cluster. |
217205
|Attached Database Configurations Name | The name of the attached database configurations object. The name must be unique at the cluster level. |
218206
|Database Name | The name of the database to be followed. If you want to follow all the leader's databases, use '*'. |
219207
|Leader Cluster Resource ID | The resource ID of the leader cluster. |

0 commit comments

Comments
 (0)