AzureStack-QuickStart-Templ.../ad-join-domain-ext-win/azuredeploy.json

201 строка
7.8 KiB
JSON
Исходник Обычный вид История

{
Update AD related templates to use Managed Disk for VMs. (#458) * Add quick deployment template for singlae ADDS DC. * Correct API verion error. * Remove AvailabilitySet.SKU property. * Set availabilityset fault domain to 2, update domain to 5. * update the VM managed disk storage account type. * Test managed disk in template * Update availability set sku to Aligned as managed. * update availabilitySets API version to 2017-12-01 to support sku "Aligned". * Update VM size to Standard_DS2_v2. * Test managed disk in VM. * Modify managed disk properties. * "storageAccountType": "StandardSSD_LRS" * test VM API version * correct VM API version to 2017-12-01 * update the API version for all components. * Update Readme.md. Singale DC deployment is successful. * Update vnet DNS to AD DC IP. * Wellsluo dev (#2) * Start to update ad domain HA templates to Managed Disk. Update api version. * Update the VM disk to managed disk. Remove creation the storage account. * update templates link * update templates link with correct _artifactsLocation uri * change data disk size to 20GB. * update 2nd DC dependson. * Change BDC name to adBDC02 since AzS report error when creating disk with name adBDC. * Update VirtualNetwork in vnet.json API version to 2017-10-01. * Remove chagne of adBDC name. * Update metadata.json with latest info. * update metadata.json with updated information. * Update apiVersion to 2017-10-01. * update apiVersion to 2017-10-01. * Update apiVersion to 2017-10-01. * update apiVersion to 2017-12-01. * Update to use managed disk when deploying VM. * Update the VM naming convention. * Update the DSC file to add the DSN forwarder to AzureStack virtual DNS, in order to resolve external DNS names, like site in Internet. Get the xDnsServer DSC module from https://github.com/PowerShell/xDnsServer, latest released version 1.13.0.0. * Update the "Known issue" part. Add issue of external FQDN name resolving. * Correct the error to compose the vmName. * Update change and known issue. * For VM with managed disk deployment template, refer to "active-directory-new-domain". * Update readme.md with changes. Rename original template file to azuredeploy-unmanagedDisk.json * Update deployment Uri to master branch.
2019-12-03 22:23:06 +03:00
"$schema": "https://schema.management.azure.com/schemas/2018-05-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"apiProfile": "2018-03-01-hybrid",
"parameters": {
"vmName": {
"type": "string",
"metadata": {
"description": "Name of the Virtual Machine to be created"
},
"defaultValue": "[substring(concat('WinVM-', uniqueString(resourceGroup().id)),0,12)]"
},
"adminUsername": {
"type": "string",
"metadata": {
"description": "Username for the Virtual Machine local administrator"
},
"defaultValue": "vmadmin"
},
"adminPassword": {
"type": "securestring",
"metadata": {
"description": "Password for the Virtual Machine local administrator. Default value is subscription id"
},
"defaultValue": "[concat('Subscription#',substring(resourcegroup().id,15,36))]"
},
"dcResourceGroupName": {
"type": "string",
"metadata": {
"description": "Name of the resource group that cointains the domain controller"
},
"defaultValue": "[resourceGroup().name]"
},
"dcVNetName": {
"type": "string",
"metadata": {
"description": "Name of the extisting VNet that contains the domain controller"
},
"defaultValue": "[concat('ADVNET',resourceGroup().name)]"
},
"dcSubnetName": {
"type": "string",
"metadata": {
"description": "Name of the existing subnet that contains the domain controller"
},
"defaultValue": "[concat('ADStaticSubnet',resourceGroup().name)]"
},
"domainToJoin": {
"type": "string",
"metadata": {
"description": "FQDN of the AD domain to join"
},
"defaultValue": "contoso.com"
},
"ouToJoin": {
"type": "string",
"metadata": {
"description": "Specifies an organizational unit (OU) for the domain account. Enter the full distinguished name of the OU in quotation marks. Example: 'OU=testOU; DC=domain; DC=Domain; DC=com'. This value can be empty"
},
"defaultValue": ""
},
"domainJoinOptions": {
"type": "int",
"metadata": {
"description": "Set of bit flags that define the join options. Default value of 3 is a combination of NETSETUP_JOIN_DOMAIN (0x00000001) & NETSETUP_ACCT_CREATE (0x00000002) i.e. will join the domain and create the account on the domain. For more information see https://msdn.microsoft.com/en-us/library/aa392154(v=vs.85).aspx"
},
"defaultValue": 3
},
"domainUserName": {
"type": "string",
"metadata": {
"description": "Username of the domain account to be used for joining the domain"
},
"defaultValue": "vmadmin"
},
"domainPassword": {
"type": "securestring",
"metadata": {
"description": "Password of the domain account to be used for joining the domain"
},
"defaultValue": "[concat('Subscription#',subscription().subscriptionId)]"
}
},
Update AD related templates to use Managed Disk for VMs. (#458) * Add quick deployment template for singlae ADDS DC. * Correct API verion error. * Remove AvailabilitySet.SKU property. * Set availabilityset fault domain to 2, update domain to 5. * update the VM managed disk storage account type. * Test managed disk in template * Update availability set sku to Aligned as managed. * update availabilitySets API version to 2017-12-01 to support sku "Aligned". * Update VM size to Standard_DS2_v2. * Test managed disk in VM. * Modify managed disk properties. * "storageAccountType": "StandardSSD_LRS" * test VM API version * correct VM API version to 2017-12-01 * update the API version for all components. * Update Readme.md. Singale DC deployment is successful. * Update vnet DNS to AD DC IP. * Wellsluo dev (#2) * Start to update ad domain HA templates to Managed Disk. Update api version. * Update the VM disk to managed disk. Remove creation the storage account. * update templates link * update templates link with correct _artifactsLocation uri * change data disk size to 20GB. * update 2nd DC dependson. * Change BDC name to adBDC02 since AzS report error when creating disk with name adBDC. * Update VirtualNetwork in vnet.json API version to 2017-10-01. * Remove chagne of adBDC name. * Update metadata.json with latest info. * update metadata.json with updated information. * Update apiVersion to 2017-10-01. * update apiVersion to 2017-10-01. * Update apiVersion to 2017-10-01. * update apiVersion to 2017-12-01. * Update to use managed disk when deploying VM. * Update the VM naming convention. * Update the DSC file to add the DSN forwarder to AzureStack virtual DNS, in order to resolve external DNS names, like site in Internet. Get the xDnsServer DSC module from https://github.com/PowerShell/xDnsServer, latest released version 1.13.0.0. * Update the "Known issue" part. Add issue of external FQDN name resolving. * Correct the error to compose the vmName. * Update change and known issue. * For VM with managed disk deployment template, refer to "active-directory-new-domain". * Update readme.md with changes. Rename original template file to azuredeploy-unmanagedDisk.json * Update deployment Uri to master branch.
2019-12-03 22:23:06 +03:00
"variables": {
"vmExtensionName": "JsonADDomainExtension",
"vmDiskStorageAccountType": "Standard_LRS",
"vmSize": "Standard_A2",
"imagePublisher": "MicrosoftWindowsServer",
"imageOffer": "WindowsServer",
"imageSKU": "2016-Datacenter",
"imageVersion": "latest",
"OSDiskName": "[concat(parameters('vmName'),'-OSDisk')]",
"publicIPAddressName": "[concat(parameters('vmName'),'-pip')]",
"nicName": "[concat(parameters('vmName'),'-nic')]",
"vnetID": "[resourceId(parameters('dcResourceGroupName'), 'Microsoft.Network/virtualNetworks', parameters('dcVNetName'))]",
"subnetRef": "[concat(variables('vnetID'),'/subnets/', parameters('dcSubnetName'))]"
},
Update AD related templates to use Managed Disk for VMs. (#458) * Add quick deployment template for singlae ADDS DC. * Correct API verion error. * Remove AvailabilitySet.SKU property. * Set availabilityset fault domain to 2, update domain to 5. * update the VM managed disk storage account type. * Test managed disk in template * Update availability set sku to Aligned as managed. * update availabilitySets API version to 2017-12-01 to support sku "Aligned". * Update VM size to Standard_DS2_v2. * Test managed disk in VM. * Modify managed disk properties. * "storageAccountType": "StandardSSD_LRS" * test VM API version * correct VM API version to 2017-12-01 * update the API version for all components. * Update Readme.md. Singale DC deployment is successful. * Update vnet DNS to AD DC IP. * Wellsluo dev (#2) * Start to update ad domain HA templates to Managed Disk. Update api version. * Update the VM disk to managed disk. Remove creation the storage account. * update templates link * update templates link with correct _artifactsLocation uri * change data disk size to 20GB. * update 2nd DC dependson. * Change BDC name to adBDC02 since AzS report error when creating disk with name adBDC. * Update VirtualNetwork in vnet.json API version to 2017-10-01. * Remove chagne of adBDC name. * Update metadata.json with latest info. * update metadata.json with updated information. * Update apiVersion to 2017-10-01. * update apiVersion to 2017-10-01. * Update apiVersion to 2017-10-01. * update apiVersion to 2017-12-01. * Update to use managed disk when deploying VM. * Update the VM naming convention. * Update the DSC file to add the DSN forwarder to AzureStack virtual DNS, in order to resolve external DNS names, like site in Internet. Get the xDnsServer DSC module from https://github.com/PowerShell/xDnsServer, latest released version 1.13.0.0. * Update the "Known issue" part. Add issue of external FQDN name resolving. * Correct the error to compose the vmName. * Update change and known issue. * For VM with managed disk deployment template, refer to "active-directory-new-domain". * Update readme.md with changes. Rename original template file to azuredeploy-unmanagedDisk.json * Update deployment Uri to master branch.
2019-12-03 22:23:06 +03:00
"resources": [
{
Update AD related templates to use Managed Disk for VMs. (#458) * Add quick deployment template for singlae ADDS DC. * Correct API verion error. * Remove AvailabilitySet.SKU property. * Set availabilityset fault domain to 2, update domain to 5. * update the VM managed disk storage account type. * Test managed disk in template * Update availability set sku to Aligned as managed. * update availabilitySets API version to 2017-12-01 to support sku "Aligned". * Update VM size to Standard_DS2_v2. * Test managed disk in VM. * Modify managed disk properties. * "storageAccountType": "StandardSSD_LRS" * test VM API version * correct VM API version to 2017-12-01 * update the API version for all components. * Update Readme.md. Singale DC deployment is successful. * Update vnet DNS to AD DC IP. * Wellsluo dev (#2) * Start to update ad domain HA templates to Managed Disk. Update api version. * Update the VM disk to managed disk. Remove creation the storage account. * update templates link * update templates link with correct _artifactsLocation uri * change data disk size to 20GB. * update 2nd DC dependson. * Change BDC name to adBDC02 since AzS report error when creating disk with name adBDC. * Update VirtualNetwork in vnet.json API version to 2017-10-01. * Remove chagne of adBDC name. * Update metadata.json with latest info. * update metadata.json with updated information. * Update apiVersion to 2017-10-01. * update apiVersion to 2017-10-01. * Update apiVersion to 2017-10-01. * update apiVersion to 2017-12-01. * Update to use managed disk when deploying VM. * Update the VM naming convention. * Update the DSC file to add the DSN forwarder to AzureStack virtual DNS, in order to resolve external DNS names, like site in Internet. Get the xDnsServer DSC module from https://github.com/PowerShell/xDnsServer, latest released version 1.13.0.0. * Update the "Known issue" part. Add issue of external FQDN name resolving. * Correct the error to compose the vmName. * Update change and known issue. * For VM with managed disk deployment template, refer to "active-directory-new-domain". * Update readme.md with changes. Rename original template file to azuredeploy-unmanagedDisk.json * Update deployment Uri to master branch.
2019-12-03 22:23:06 +03:00
"type": "Microsoft.Network/publicIPAddresses",
"name": "[variables('publicIPAddressName')]",
"location": "[resourceGroup().location]",
"properties": {
"publicIPAllocationMethod": "Dynamic",
"dnsSettings": {
"domainNameLabel": "[toLower(parameters('vmName'))]"
}
}
},
{
Update AD related templates to use Managed Disk for VMs. (#458) * Add quick deployment template for singlae ADDS DC. * Correct API verion error. * Remove AvailabilitySet.SKU property. * Set availabilityset fault domain to 2, update domain to 5. * update the VM managed disk storage account type. * Test managed disk in template * Update availability set sku to Aligned as managed. * update availabilitySets API version to 2017-12-01 to support sku "Aligned". * Update VM size to Standard_DS2_v2. * Test managed disk in VM. * Modify managed disk properties. * "storageAccountType": "StandardSSD_LRS" * test VM API version * correct VM API version to 2017-12-01 * update the API version for all components. * Update Readme.md. Singale DC deployment is successful. * Update vnet DNS to AD DC IP. * Wellsluo dev (#2) * Start to update ad domain HA templates to Managed Disk. Update api version. * Update the VM disk to managed disk. Remove creation the storage account. * update templates link * update templates link with correct _artifactsLocation uri * change data disk size to 20GB. * update 2nd DC dependson. * Change BDC name to adBDC02 since AzS report error when creating disk with name adBDC. * Update VirtualNetwork in vnet.json API version to 2017-10-01. * Remove chagne of adBDC name. * Update metadata.json with latest info. * update metadata.json with updated information. * Update apiVersion to 2017-10-01. * update apiVersion to 2017-10-01. * Update apiVersion to 2017-10-01. * update apiVersion to 2017-12-01. * Update to use managed disk when deploying VM. * Update the VM naming convention. * Update the DSC file to add the DSN forwarder to AzureStack virtual DNS, in order to resolve external DNS names, like site in Internet. Get the xDnsServer DSC module from https://github.com/PowerShell/xDnsServer, latest released version 1.13.0.0. * Update the "Known issue" part. Add issue of external FQDN name resolving. * Correct the error to compose the vmName. * Update change and known issue. * For VM with managed disk deployment template, refer to "active-directory-new-domain". * Update readme.md with changes. Rename original template file to azuredeploy-unmanagedDisk.json * Update deployment Uri to master branch.
2019-12-03 22:23:06 +03:00
"type": "Microsoft.Network/networkInterfaces",
"name": "[variables('nicName')]",
"location": "[resourceGroup().location]",
"dependsOn": [
"[concat('Microsoft.Network/publicIPAddresses/', variables('publicIPAddressName'))]"
],
"properties": {
"ipConfigurations": [
{
"name": "ipconfig1",
"properties": {
"privateIPAllocationMethod": "Dynamic",
"publicIPAddress": {
"id": "[resourceId('Microsoft.Network/publicIPAddresses',variables('publicIPAddressName'))]"
},
"subnet": {
"id": "[variables('subnetRef')]"
}
}
}
Update AD related templates to use Managed Disk for VMs. (#458) * Add quick deployment template for singlae ADDS DC. * Correct API verion error. * Remove AvailabilitySet.SKU property. * Set availabilityset fault domain to 2, update domain to 5. * update the VM managed disk storage account type. * Test managed disk in template * Update availability set sku to Aligned as managed. * update availabilitySets API version to 2017-12-01 to support sku "Aligned". * Update VM size to Standard_DS2_v2. * Test managed disk in VM. * Modify managed disk properties. * "storageAccountType": "StandardSSD_LRS" * test VM API version * correct VM API version to 2017-12-01 * update the API version for all components. * Update Readme.md. Singale DC deployment is successful. * Update vnet DNS to AD DC IP. * Wellsluo dev (#2) * Start to update ad domain HA templates to Managed Disk. Update api version. * Update the VM disk to managed disk. Remove creation the storage account. * update templates link * update templates link with correct _artifactsLocation uri * change data disk size to 20GB. * update 2nd DC dependson. * Change BDC name to adBDC02 since AzS report error when creating disk with name adBDC. * Update VirtualNetwork in vnet.json API version to 2017-10-01. * Remove chagne of adBDC name. * Update metadata.json with latest info. * update metadata.json with updated information. * Update apiVersion to 2017-10-01. * update apiVersion to 2017-10-01. * Update apiVersion to 2017-10-01. * update apiVersion to 2017-12-01. * Update to use managed disk when deploying VM. * Update the VM naming convention. * Update the DSC file to add the DSN forwarder to AzureStack virtual DNS, in order to resolve external DNS names, like site in Internet. Get the xDnsServer DSC module from https://github.com/PowerShell/xDnsServer, latest released version 1.13.0.0. * Update the "Known issue" part. Add issue of external FQDN name resolving. * Correct the error to compose the vmName. * Update change and known issue. * For VM with managed disk deployment template, refer to "active-directory-new-domain". * Update readme.md with changes. Rename original template file to azuredeploy-unmanagedDisk.json * Update deployment Uri to master branch.
2019-12-03 22:23:06 +03:00
]
}
},
{
Update AD related templates to use Managed Disk for VMs. (#458) * Add quick deployment template for singlae ADDS DC. * Correct API verion error. * Remove AvailabilitySet.SKU property. * Set availabilityset fault domain to 2, update domain to 5. * update the VM managed disk storage account type. * Test managed disk in template * Update availability set sku to Aligned as managed. * update availabilitySets API version to 2017-12-01 to support sku "Aligned". * Update VM size to Standard_DS2_v2. * Test managed disk in VM. * Modify managed disk properties. * "storageAccountType": "StandardSSD_LRS" * test VM API version * correct VM API version to 2017-12-01 * update the API version for all components. * Update Readme.md. Singale DC deployment is successful. * Update vnet DNS to AD DC IP. * Wellsluo dev (#2) * Start to update ad domain HA templates to Managed Disk. Update api version. * Update the VM disk to managed disk. Remove creation the storage account. * update templates link * update templates link with correct _artifactsLocation uri * change data disk size to 20GB. * update 2nd DC dependson. * Change BDC name to adBDC02 since AzS report error when creating disk with name adBDC. * Update VirtualNetwork in vnet.json API version to 2017-10-01. * Remove chagne of adBDC name. * Update metadata.json with latest info. * update metadata.json with updated information. * Update apiVersion to 2017-10-01. * update apiVersion to 2017-10-01. * Update apiVersion to 2017-10-01. * update apiVersion to 2017-12-01. * Update to use managed disk when deploying VM. * Update the VM naming convention. * Update the DSC file to add the DSN forwarder to AzureStack virtual DNS, in order to resolve external DNS names, like site in Internet. Get the xDnsServer DSC module from https://github.com/PowerShell/xDnsServer, latest released version 1.13.0.0. * Update the "Known issue" part. Add issue of external FQDN name resolving. * Correct the error to compose the vmName. * Update change and known issue. * For VM with managed disk deployment template, refer to "active-directory-new-domain". * Update readme.md with changes. Rename original template file to azuredeploy-unmanagedDisk.json * Update deployment Uri to master branch.
2019-12-03 22:23:06 +03:00
"type": "Microsoft.Compute/virtualMachines",
"name": "[parameters('vmName')]",
"location": "[resourceGroup().location]",
"dependsOn": [
"[concat('Microsoft.Network/networkInterfaces/', variables('nicName'))]"
],
"properties": {
"hardwareProfile": {
"vmSize": "[variables('vmSize')]"
},
Update AD related templates to use Managed Disk for VMs. (#458) * Add quick deployment template for singlae ADDS DC. * Correct API verion error. * Remove AvailabilitySet.SKU property. * Set availabilityset fault domain to 2, update domain to 5. * update the VM managed disk storage account type. * Test managed disk in template * Update availability set sku to Aligned as managed. * update availabilitySets API version to 2017-12-01 to support sku "Aligned". * Update VM size to Standard_DS2_v2. * Test managed disk in VM. * Modify managed disk properties. * "storageAccountType": "StandardSSD_LRS" * test VM API version * correct VM API version to 2017-12-01 * update the API version for all components. * Update Readme.md. Singale DC deployment is successful. * Update vnet DNS to AD DC IP. * Wellsluo dev (#2) * Start to update ad domain HA templates to Managed Disk. Update api version. * Update the VM disk to managed disk. Remove creation the storage account. * update templates link * update templates link with correct _artifactsLocation uri * change data disk size to 20GB. * update 2nd DC dependson. * Change BDC name to adBDC02 since AzS report error when creating disk with name adBDC. * Update VirtualNetwork in vnet.json API version to 2017-10-01. * Remove chagne of adBDC name. * Update metadata.json with latest info. * update metadata.json with updated information. * Update apiVersion to 2017-10-01. * update apiVersion to 2017-10-01. * Update apiVersion to 2017-10-01. * update apiVersion to 2017-12-01. * Update to use managed disk when deploying VM. * Update the VM naming convention. * Update the DSC file to add the DSN forwarder to AzureStack virtual DNS, in order to resolve external DNS names, like site in Internet. Get the xDnsServer DSC module from https://github.com/PowerShell/xDnsServer, latest released version 1.13.0.0. * Update the "Known issue" part. Add issue of external FQDN name resolving. * Correct the error to compose the vmName. * Update change and known issue. * For VM with managed disk deployment template, refer to "active-directory-new-domain". * Update readme.md with changes. Rename original template file to azuredeploy-unmanagedDisk.json * Update deployment Uri to master branch.
2019-12-03 22:23:06 +03:00
"osProfile": {
"computerName": "[parameters('vmName')]",
"adminUsername": "[parameters('adminUsername')]",
"adminPassword": "[parameters('adminPassword')]"
},
"storageProfile": {
"imageReference": {
"publisher": "[variables('imagePublisher')]",
"offer": "[variables('imageOffer')]",
"sku": "[variables('imageSKU')]",
"version": "[variables('imageVersion')]"
},
"osDisk": {
"name": "[variables('OSDiskName')]",
"managedDisk": {
"storageAccountType": "[variables('vmDiskStorageAccountType')]"
},
"caching": "ReadWrite",
"createOption": "FromImage"
}
},
"networkProfile": {
"networkInterfaces": [
{
"id": "[resourceId('Microsoft.Network/networkInterfaces',variables('nicName'))]"
}
]
}
}
},
{
Update AD related templates to use Managed Disk for VMs. (#458) * Add quick deployment template for singlae ADDS DC. * Correct API verion error. * Remove AvailabilitySet.SKU property. * Set availabilityset fault domain to 2, update domain to 5. * update the VM managed disk storage account type. * Test managed disk in template * Update availability set sku to Aligned as managed. * update availabilitySets API version to 2017-12-01 to support sku "Aligned". * Update VM size to Standard_DS2_v2. * Test managed disk in VM. * Modify managed disk properties. * "storageAccountType": "StandardSSD_LRS" * test VM API version * correct VM API version to 2017-12-01 * update the API version for all components. * Update Readme.md. Singale DC deployment is successful. * Update vnet DNS to AD DC IP. * Wellsluo dev (#2) * Start to update ad domain HA templates to Managed Disk. Update api version. * Update the VM disk to managed disk. Remove creation the storage account. * update templates link * update templates link with correct _artifactsLocation uri * change data disk size to 20GB. * update 2nd DC dependson. * Change BDC name to adBDC02 since AzS report error when creating disk with name adBDC. * Update VirtualNetwork in vnet.json API version to 2017-10-01. * Remove chagne of adBDC name. * Update metadata.json with latest info. * update metadata.json with updated information. * Update apiVersion to 2017-10-01. * update apiVersion to 2017-10-01. * Update apiVersion to 2017-10-01. * update apiVersion to 2017-12-01. * Update to use managed disk when deploying VM. * Update the VM naming convention. * Update the DSC file to add the DSN forwarder to AzureStack virtual DNS, in order to resolve external DNS names, like site in Internet. Get the xDnsServer DSC module from https://github.com/PowerShell/xDnsServer, latest released version 1.13.0.0. * Update the "Known issue" part. Add issue of external FQDN name resolving. * Correct the error to compose the vmName. * Update change and known issue. * For VM with managed disk deployment template, refer to "active-directory-new-domain". * Update readme.md with changes. Rename original template file to azuredeploy-unmanagedDisk.json * Update deployment Uri to master branch.
2019-12-03 22:23:06 +03:00
"type": "Microsoft.Compute/virtualMachines/extensions",
"name": "[concat(parameters('vmName'),'/', variables('vmExtensionName'))]",
"location": "[resourceGroup().location]",
"dependsOn": [
"[concat('Microsoft.Compute/virtualMachines/', parameters('vmName'))]"
],
"properties": {
"publisher": "Microsoft.Compute",
"type": "JsonADDomainExtension",
"typeHandlerVersion": "1.3",
"autoUpgradeMinorVersion": true,
"settings": {
"Name": "[parameters('domainToJoin')]",
"OUPath": "[parameters('ouToJoin')]",
"User": "[concat(parameters('domainToJoin'), '\\', parameters('domainUserName'))]",
"Restart": "true",
"Options": "[parameters('domainJoinOptions')]"
},
"protectedsettings": {
"Password": "[parameters('domainPassword')]"
}
}
}
Update AD related templates to use Managed Disk for VMs. (#458) * Add quick deployment template for singlae ADDS DC. * Correct API verion error. * Remove AvailabilitySet.SKU property. * Set availabilityset fault domain to 2, update domain to 5. * update the VM managed disk storage account type. * Test managed disk in template * Update availability set sku to Aligned as managed. * update availabilitySets API version to 2017-12-01 to support sku "Aligned". * Update VM size to Standard_DS2_v2. * Test managed disk in VM. * Modify managed disk properties. * "storageAccountType": "StandardSSD_LRS" * test VM API version * correct VM API version to 2017-12-01 * update the API version for all components. * Update Readme.md. Singale DC deployment is successful. * Update vnet DNS to AD DC IP. * Wellsluo dev (#2) * Start to update ad domain HA templates to Managed Disk. Update api version. * Update the VM disk to managed disk. Remove creation the storage account. * update templates link * update templates link with correct _artifactsLocation uri * change data disk size to 20GB. * update 2nd DC dependson. * Change BDC name to adBDC02 since AzS report error when creating disk with name adBDC. * Update VirtualNetwork in vnet.json API version to 2017-10-01. * Remove chagne of adBDC name. * Update metadata.json with latest info. * update metadata.json with updated information. * Update apiVersion to 2017-10-01. * update apiVersion to 2017-10-01. * Update apiVersion to 2017-10-01. * update apiVersion to 2017-12-01. * Update to use managed disk when deploying VM. * Update the VM naming convention. * Update the DSC file to add the DSN forwarder to AzureStack virtual DNS, in order to resolve external DNS names, like site in Internet. Get the xDnsServer DSC module from https://github.com/PowerShell/xDnsServer, latest released version 1.13.0.0. * Update the "Known issue" part. Add issue of external FQDN name resolving. * Correct the error to compose the vmName. * Update change and known issue. * For VM with managed disk deployment template, refer to "active-directory-new-domain". * Update readme.md with changes. Rename original template file to azuredeploy-unmanagedDisk.json * Update deployment Uri to master branch.
2019-12-03 22:23:06 +03:00
]
}