mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
update ASDE strings (#11317)
* update strings * comments * update license term link
This commit is contained in:
@@ -24,8 +24,13 @@
|
||||
"cell_type": "markdown",
|
||||
"source": [
|
||||
"\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"
|
||||
|
||||
Reference in New Issue
Block a user