Skip to content

Commit b95453f

Browse files
authored
Add C* 4.0
1 parent ed60194 commit b95453f

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

articles/managed-instance-apache-cassandra/create-cluster-cli.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,19 +67,25 @@ This quickstart demonstrates how to use the Azure CLI commands to create a clust
6767
> [!NOTE]
6868
> The value of the `delegatedManagementSubnetId` variable you will supply below is exactly the same as the value of `--scope` that you supplied in the command above:
6969
70+
> [!NOTE]
71+
> Cassandra 4.0 is in public preview and not recommended for production use cases.
72+
73+
7074
```azurecli-interactive
7175
resourceGroupName='<Resource_Group_Name>'
7276
clusterName='<Cluster_Name>'
7377
location='eastus2'
7478
delegatedManagementSubnetId='/subscriptions/<subscription ID>/resourceGroups/<resource group name>/providers/Microsoft.Network/virtualNetworks/<VNet name>/subnets/<subnet name>'
7579
initialCassandraAdminPassword='myPassword'
80+
cassandraVersion='3.11' # set to 4.0 for a Cassandra 4.0 cluster
7681
7782
az managed-cassandra cluster create \
7883
--cluster-name $clusterName \
7984
--resource-group $resourceGroupName \
8085
--location $location \
8186
--delegated-management-subnet-id $delegatedManagementSubnetId \
8287
--initial-cassandra-admin-password $initialCassandraAdminPassword \
88+
----cassandra-version $cassandraVersion \
8389
--debug
8490
```
8591

0 commit comments

Comments
 (0)