update ASDE strings (#11317)

* update strings

* comments

* update license term link
This commit is contained in:
Alan Ren
2020-07-13 15:40:06 -07:00
committed by GitHub
parent 22f85ad4ff
commit 11aa2b73b4
5 changed files with 35 additions and 27 deletions

View File

@@ -24,8 +24,13 @@
"cell_type": "markdown",
"source": [
"![Microsoft](https://raw.githubusercontent.com/microsoft/azuredatastudio/main/extensions/resource-deployment/images/microsoft-small-logo.png)\n",
"## Run Azure SQL Database Edge image on a device\n",
"This notebook deploy the Azure SQL Database Edge module on a device and connect to it in Azure Data Studio\n",
"## Deploy Azure SQL Edge to an Azure VM via IoT hub\n",
"This notebook will walk you through the end to end setup of Azure SQL Edge.\n",
"1. Create an Azure Edge VM as a virtual IoT device\n",
"1. Create an Azure IoT hub\n",
"1. Add the device to the IoT hub\n",
"1. Deploy SQL Edge module to the device with optional dacpac\n",
"1. Enable connecting to the SQL Edge instance on the device\n",
"\n",
"### Dependencies\n",
"- Azure CLI. For more information, see [Azure CLI Installation](https://docs.microsoft.com/cli/azure/install-azure-cli?view=azure-cli-latest).\n",
@@ -160,14 +165,15 @@
{
"cell_type": "code",
"source": [
"network_security_group = 'asde_nsg'\n",
"public_ip_address_name = 'asde_public_ip'\n",
"iot_hub_name = 'asdeiothub'\n",
"suffix = time.strftime(\"%Y%m%d%H%M%S\", time.localtime())\n",
"network_security_group = f'nsg{suffix}'\n",
"public_ip_address_name = f'ip{suffix}'\n",
"iot_hub_name = f'hub{suffix}'\n",
"iot_hub_sku = 'S1'\n",
"iot_hub_units = 4\n",
"vm_size = 'Standard_DS3_v2'\n",
"vnet_name = 'asde_network'\n",
"subnet_name = 'asde_subnet'\n",
"vnet_name = f'net{suffix}'\n",
"subnet_name = f'subnet{suffix}'\n",
"subnet_address_prefix = '10.0.0.0/24'\n",
"vnet_address_prefix = '10.0.0.0/16'\n",
"azure_storage_account = azure_resource_group.lower()\n",
@@ -459,7 +465,7 @@
{
"cell_type": "markdown",
"source": [
"### Deploy Azure SQL Database Edge to the device"
"### Deploy Azure SQL Edge to the device"
],
"metadata": {
"azdata_cell_guid": "ec46957f-0795-4c75-804d-f8a7ecb26382"

View File

@@ -24,7 +24,7 @@
"cell_type": "markdown",
"source": [
"![Microsoft](https://raw.githubusercontent.com/microsoft/azuredatastudio/main/extensions/resource-deployment/images/microsoft-small-logo.png)\n",
"## Run Azure SQL Edge image locally with Docker\n",
"## Deploy Azure SQL Edge container instance locally with Docker\n",
"This notebook will use Docker to pull and run the Azure SQL Edge image and connect to it in Azure Data Studio\n",
"\n",
"### Dependencies\n",
@@ -285,4 +285,4 @@
"execution_count": null
}
]
}
}

View File

@@ -24,7 +24,7 @@
"cell_type": "markdown",
"source": [
"![Microsoft](https://raw.githubusercontent.com/microsoft/azuredatastudio/main/extensions/resource-deployment/images/microsoft-small-logo.png)\n",
"## Run Azure SQL DB Edge image on a remote machine with Docker\n",
"## Deploy Azure SQL Edge container instance on a remote machine with Docker\n",
"This notebook will use SSH to connect to the remote machine, use Docker to pull and run the Azure SQL Edge image and connect to it in Azure Data Studio\n",
"\n",
"\n",
@@ -358,10 +358,12 @@
],
"metadata": {
"azdata_cell_guid": "9f2c9d3a-b996-4977-81f5-05a79a2e0e12",
"tags": []
"tags": [
"hide_input"
]
},
"outputs": [],
"execution_count": null
}
]
}
}