Skip to content

Commit c727239

Browse files
authored
tiger team updates (#36259)
1 parent 2e89756 commit c727239

3 files changed

Lines changed: 309 additions & 134 deletions

File tree

azure-sql/managed-instance/create-template-quickstart.md

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,18 @@ If your environment meets the prerequisites and you're familiar with using ARM t
3131

3232
The template used in this quickstart is from [Azure Quickstart Templates](https://azure.microsoft.com/resources/templates/sqlmi-new-vnet/).
3333

34+
**Key template parameters**
35+
36+
| Parameter name | Default / Example | Allowed values / Constraints | Description |
37+
|----------------------------|--------------------------|---------------------------------------|-----------------------------------------------|
38+
| managedInstanceName | sqlmi | 1–63 characters | Name of the SQL managed instance |
39+
| location | resourceGroup().location | Azure regions that support SQL managed instance | Region for all resources |
40+
| administratorLogin | sqladmin | Cannot be reserved words | SQL administrator login |
41+
| administratorLoginPassword || Minimum length and complexity enforced| SQL administrator password |
42+
| vCores | 8 | Valid vCore values per SKU | Compute size of the instance |
43+
| storageSizeInGB | 256 | Min/Max per service tier | Storage allocated to the instance |
44+
| subnetAddressPrefix | 10.0.0.0/24 | Dedicated, delegated subnet required | Subnet for the managed instance |
45+
3446
:::code language="json" source="~/../quickstart-templates/quickstarts/microsoft.sql/sqlmi-new-vnet/azuredeploy.json":::
3547

3648
These resources are defined in the template:
@@ -46,8 +58,19 @@ More template samples can be found in [Azure Quickstart Templates](https://azure
4658

4759
Select **Try it** from the following PowerShell code block to open Azure Cloud Shell.
4860

61+
**Deployment checklist**
62+
63+
1. Verify prerequisites:
64+
- Active Azure subscription
65+
- Required permissions (SQL Managed Instance Contributor or Microsoft.Sql/managedInstances/write)
66+
2. Run the deployment command (PowerShell or Azure CLI) using the snippets below.
67+
3. Verify success:
68+
- In the Azure portal, the deployment shows **Succeeded**
69+
- The SQL managed instance appears in the target resource group with state **Creating** or **Ready**
70+
<!-- Added a numbered deployment checklist to clarify prerequisites, execution steps, and success verification. -->
71+
4972
> [!IMPORTANT]
50-
> Deploying a managed instance is a long-running operation. Deployment of the first instance in the subnet typically takes much longer than deploying into a subnet with existing managed instances. For average provisioning times, see [SQL Managed Instance management operations](management-operations-duration.md).
73+
> Deploying a SQL managed instance is a long-running operation. Deployment of the first instance in the subnet typically takes much longer than deploying into a subnet with existing managed instances. For average provisioning times, see [SQL Managed Instance management operations](management-operations-duration.md).
5174
5275
# [PowerShell](#tab/azure-powershell)
5376

0 commit comments

Comments
 (0)