├── .DS_Store ├── 100-Blank-Template ├── README.md ├── azuredeploy.json ├── azuredeploy.parameters.json └── metadata.json ├── 101-acsengine-docker-swarm ├── README.md ├── azuredeploy.json ├── azuredeploy.parameters.json └── metadata.json ├── 101-acsengine-docker-swarmmode ├── README.md ├── azuredeploy.json ├── azuredeploy.parameters.json └── metadata.json ├── 101-availabilityset-multiplevm-create ├── README.md ├── azuredeploy.json ├── azuredeploy.parameters.json └── metadata.json ├── 101-availabilityset-multiplevm-linux ├── README.md ├── azuredeploy.json ├── azuredeploy.parameters.json └── metadata.json ├── 101-create-dnszones ├── README.md ├── azuredeploy.json ├── azuredeploy.parameters.json └── metadata.json ├── 101-create-nsg ├── README.md ├── azuredeploy.json ├── azuredeploy.parameters.json └── metadata.json ├── 101-create-storage-account ├── README.md ├── azuredeploy.json ├── azuredeploy.parameters.json └── metadata.json ├── 101-create-vnet-full ├── README.md ├── azuredeploy.json ├── azuredeploy.parameters.json └── metadata.json ├── 101-create-vnet-nsg-only ├── README.md ├── azuredeploy.json ├── azuredeploy.parameters.json └── metadata.json ├── 101-create-vnet-only ├── README.md ├── azuredeploy.json ├── azuredeploy.parameters.json └── metadata.json ├── 101-mysqladapter-add-hosting-server ├── README.md ├── azuredeploy.json ├── azuredeploy.parameters.json └── metadata.json ├── 101-mysqladapter-create-database ├── README.md ├── azuredeploy.json ├── azuredeploy.parameters.json └── metadata.json ├── 101-simple-linux-vm-custom-managed-disk ├── README.md ├── azuredeploy.json ├── azuredeploy.parameters.json ├── deploy_image.ps1 ├── images │ ├── deploytoasdk.png │ ├── image.png │ ├── rg.png │ └── template.png └── metadata.json ├── 101-simple-windows-vm-custom-managed-disk ├── README.md ├── azuredeploy.json ├── azuredeploy.parameters.json ├── deploy_image.ps1 ├── images │ ├── deploytoasdk.png │ ├── image.png │ ├── rg.png │ └── template.png └── metadata.json ├── 101-sqladapter-add-hosting-server ├── README.md ├── azuredeploy.json ├── azuredeploy.parameters.json └── metadata.json ├── 101-sqladapter-create-database ├── README.md ├── azuredeploy.json ├── azuredeploy.parameters.json └── metadata.json ├── 101-vm-apply-extension-multiple ├── README.md ├── azuredeploy.json ├── azuredeploy.parameters.json └── metadata.json ├── 101-vm-create-from-customimage ├── README.md ├── azuredeploy.json ├── azuredeploy.parameters.json └── metadata.json ├── 101-vm-linux-apply-extension-customscript ├── README.md ├── azuredeploy.json ├── azuredeploy.parameters.json └── metadata.json ├── 101-vm-linux-apply-extension-docker ├── README.md ├── azuredeploy.json ├── azuredeploy.parameters.json └── metadata.json ├── 101-vm-linux-apply-extension-vmaccess ├── README.md ├── azuredeploy.json ├── azuredeploy.parameters.json └── metadata.json ├── 101-vm-linux-create-passwordfromkv ├── README.md ├── azuredeploy.json ├── azuredeploy.parameters.json └── metadata.json ├── 101-vm-linux-create-with-extension-diagnostic ├── README.md ├── azuredeploy.json ├── azuredeploy.parameters.json ├── images │ ├── AddLADFromMarketplace.png │ ├── DeployParameters.png │ ├── GusetMetrics.png │ └── Log.png └── metadata.json ├── 101-vm-linux-create ├── README.md ├── azuredeploy.json ├── azuredeploy.parameters.json ├── centos.6.9.azuredeploy.parameters.json ├── centos.7.3.azuredeploy.parameters.json ├── centos.7.4.azuredeploy.parameters.json ├── centos.7.5.azuredeploy.parameters.json ├── debian.8.azuredeploy.parameters.json ├── metadata.json ├── suse.11sp4.azuredeploy.parameters.json ├── suse.12sp2.azuredeploy.parameters.json ├── suse.12sp3.azuredeploy.parameters.json ├── ubuntu.14.04.azuredeploy.parameters.json └── ubuntu.16.04.azuredeploy.parameters.json ├── 101-vm-linux-docker-registry ├── README.md ├── azuredeploy.json ├── azuredeploy.parameters.json ├── connect.ps1 ├── script.sh └── setup.ps1 ├── 101-vm-linux-minikube ├── README.md ├── azuredeploy.json ├── azuredeploy.parameters.json ├── images │ ├── PublicIP.PNG │ ├── RemoteDesktop.PNG │ ├── RemoteDesktopCred.PNG │ ├── ResourceGroup.PNG │ ├── minikube.png │ ├── minikubearch.png │ ├── samples │ └── terminal.PNG ├── metadata.json └── script.sh ├── 101-vm-windows-apply-extension-bginfo ├── README.md ├── azuredeploy.json ├── azuredeploy.parameters.json └── metadata.json ├── 101-vm-windows-apply-extension-customscript-cmd ├── README.md ├── azuredeploy.json ├── azuredeploy.parameters.json └── metadata.json ├── 101-vm-windows-apply-extension-customscript-pscmd ├── README.md ├── azuredeploy.json ├── azuredeploy.parameters.json └── metadata.json ├── 101-vm-windows-apply-extension-customscript-sf ├── README.md ├── VMCustomScriptExtension.ps1 ├── azuredeploy.json ├── azuredeploy.parameters.json └── metadata.json ├── 101-vm-windows-create-api-profile ├── README.md ├── azuredeploy.json ├── azuredeploy.parameters.json └── metadata.json ├── 101-vm-windows-create-passwordfromkv ├── README.md ├── azuredeploy.json ├── azuredeploy.parameters.json └── metadata.json ├── 101-vm-windows-create-with-extension-diagnostic ├── README.md ├── azuredeploy.json ├── azuredeploy.parameters.json └── metadata.json ├── 101-vm-windows-create ├── README.md ├── azuredeploy.json ├── azuredeploy.parameters.json └── metadata.json ├── 101-vm-windows-createmultiple ├── README.md ├── azuredeploy.json ├── azuredeploy.parameters.json └── metadata.json ├── 101-vm-windowsandlinux-createmultiple ├── README.md ├── azuredeploy.json ├── azuredeploy.parameters.json └── metadata.json ├── 101-vmss-linux-vm ├── README.md ├── azuredeploy.json ├── azuredeploy.parameters.json └── metadata.json ├── 101-vmss-windows-vm ├── README.md ├── azuredeploy.json ├── azuredeploy.parameters.json └── metadata.json ├── 101Linux-Empty-AttachDataDisk-managed ├── README.md ├── azuredeploy.json ├── azuredeploy.parameters.json └── metadata.json ├── 101Linux-EmptyDataDisk-managed ├── README.md ├── azuredeploy.json ├── azuredeploy.parameters.json └── metadata.json ├── 101Windows-Empty-AttachDataDisk-managed ├── README.md ├── azuredeploy.json ├── azuredeploy.parameters.json └── metadata.json ├── 201-vm-linux-comprehensive-with-managed-disks ├── README.md ├── azuredeploy.json ├── azuredeploy.parameters.json ├── metadata.json └── script.sh ├── 201-vm-linux-comprehensive ├── README.md ├── azuredeploy.json ├── azuredeploy.parameters.json ├── metadata.json └── script.sh ├── 201-vm-ubuntu-apply-extension-ospatching ├── README.md ├── azuredeploy.json ├── azuredeploy.parameters.json └── metadata.json ├── 201-vm-windows-comprehensive-with-managed-disks ├── README.md ├── ValidateWindowsFeature.ps1 ├── azuredeploy.json ├── azuredeploy.parameters.json ├── metadata.json ├── storageAccount.json └── windowsFeature.zip ├── 201-vm-windows-comprehensive ├── README.md ├── ValidateWindowsFeature.ps1 ├── azuredeploy.json ├── azuredeploy.parameters.json ├── metadata.json ├── storageAccount.json └── windowsFeature.zip ├── 201-vm-windows-pushcertificate ├── README.md ├── azuredeploy.json ├── azuredeploy.parameters.json └── metadata.json ├── 201-vmss-linux-existing-vnet ├── README.md ├── azuredeploy.json ├── azuredeploy.parameters.json └── metadata.json ├── 201-vmss-linux-extension ├── README.md ├── azuredeploy.json ├── azuredeploy.parameters.json └── metadata.json ├── 201-vmss-linux-vm-largescale ├── README.md ├── azuredeploy.json ├── azuredeploy.parameters.json └── metadata.json ├── 201-vmss-scalein-scaleout-existing ├── README.md ├── azuredeploy.json ├── azuredeploy.parameters.json └── metadata.json ├── 201-vmss-windows-customimage ├── README.md ├── azuredeploy.json ├── azuredeploy.parameters.json └── metadata.json ├── 201-vmss-windows-extension ├── README.md ├── azuredeploy.json ├── azuredeploy.parameters.json ├── metadata.json └── scripts │ └── helloWorld.ps1 ├── 201-vmss-windows-vm-largescale-with-managed-disk ├── README.md ├── azuredeploy.json ├── azuredeploy.parameters.json └── metadata.json ├── 201-vmss-windows-vm-largescale ├── README.md ├── azuredeploy.json ├── azuredeploy.parameters.json └── metadata.json ├── 201-webapp-and-serviceplan ├── README.md ├── azuredeploy.json ├── azuredeploy.parameters.json └── metadata.json ├── 201-webapp-gdpr-compliant ├── azuredeploy.json ├── azuredeploy.parameters.json ├── images │ └── architecture.png ├── metadata.json └── readme.md ├── 301-availability-set-elastic-storage-ecs ├── README.md ├── azuredeploy.json ├── azuredeploy.parameters.json ├── deploy-azureresourcegroup.ps1 ├── images │ ├── ansible.png │ ├── dashboard.png │ ├── deploytoasdk.png │ ├── deploytoasdkadmin.png │ ├── log.png │ ├── new_rg.png │ ├── rg_done.png │ ├── rg_parameter.png │ ├── template_edit.png │ ├── template_load.png │ └── template_new.png ├── metadata.json └── scripts │ ├── deploy.yml │ ├── ecs-installer.service │ ├── ecs.sh │ └── ecs_pre.sh ├── 301-storage-spaces-direct ├── .ci_skip ├── README.md ├── azuredeploy.json ├── azuredeploy.parameters.json ├── dsc │ ├── config-s2d.ps1.zip │ └── prep-s2d.ps1.zip ├── metadata.json └── nestedtemplates │ ├── deploy-s2d-cluster.json │ ├── diskSelection.json │ └── newVM.json ├── ApplyCustomScriptExtensionToWindowsVm+managed ├── README.md ├── azuredeploy.json ├── azuredeploy.parameters.json └── metadata.json ├── AzureBackupServer ├── .DS_Store ├── Artifacts │ ├── CSDownloadMabs.ps1 │ └── MabsWorkload.ps1.zip ├── README.md ├── azuredeploy.json ├── azuredeploy.parameters.json └── metadata.json ├── Bicep ├── 101-availabilityset-multiplevm-linux │ ├── README.md │ ├── azuredeploy.bicep │ └── azuredeploy.parameters.json ├── 101-simple-linux-vm-custom-managed-disk │ ├── README.md │ ├── azuredeploy.bicep │ ├── azuredeploy.parameters.json │ ├── deploy_image.ps1 │ └── images │ │ ├── deploytoasdk.png │ │ ├── image.png │ │ ├── rg.png │ │ └── template.png ├── 101-vmss-windows-vm │ ├── README.md │ ├── azuredeploy.bicep │ └── azuredeploy.parameters.json ├── 201-vmss-linux-extension │ ├── README.md │ ├── azuredeploy.bicep │ └── azuredeploy.parameters.json ├── 201-vmss-windows-extension │ ├── README.md │ ├── azuredeploy.bicep │ ├── azuredeploy.parameters.json │ └── scripts │ │ └── helloWorld.ps1 └── README.md ├── License.txt ├── Linux-VmssManaged ├── README.md ├── azuredeploy.json ├── azuredeploy.parameters.json └── metadata.json ├── MicrosoftMonitoringAgent-ext-win ├── README.md ├── azuredeploy.json ├── azuredeploy.parameters.json └── metadata.json ├── MultiVm-Linux-AvailabilitySet-managed ├── README.md ├── azuredeploy.json ├── azuredeploy.parameters.json └── metadata.json ├── MultiVm-Windows-AvailabilitySet-managed ├── README.md ├── azuredeploy.json ├── azuredeploy.parameters.json └── metadata.json ├── README.md ├── SECURITY.md ├── Sample README.md ├── ScaleInOutExistingVmss-managed ├── .DS_Store ├── README.md ├── azuredeploy.json ├── azuredeploy.parameters.json └── metadata.json ├── active-directory-new-domain-ha-2-dc ├── .gitignore ├── DSC │ ├── ConfigureADBDC.ps1 │ ├── ConfigureADBDC.zip │ ├── CreateADPDC.ps1 │ ├── CreateADPDC.zip │ ├── PrepareADBDC.ps1 │ └── PrepareADBDC.zip ├── README.md ├── azuredeploy-unmanagedDisk.json ├── azuredeploy.json ├── azuredeploy.parameters.json ├── metadata.json └── nestedtemplates │ ├── configureADBDC.json │ ├── nic.json │ ├── vnet-with-dns-server.json │ └── vnet.json ├── active-directory-new-domain ├── DSC │ ├── CreateADPDC.ps1 │ └── CreateADPDC.zip ├── README.md ├── azuredeploy.json ├── azuredeploy.parameters.json ├── metadata.json └── nestedtemplates │ ├── vnet-with-dns-server.json │ └── vnet.json ├── ad-join-domain-ext-win ├── README.md ├── azuredeploy-unmanagedDisk.json ├── azuredeploy.json ├── azuredeploy.parameters.json └── metadata.json ├── ad-non-ha ├── CreateADPDC.ps1.zip ├── Readme.md ├── adVmTemplate.json ├── azuredeploy.json ├── azuredeploy.parameters.json ├── deployPrimaryAD.json ├── metadata.json ├── nic.json └── vnet-with-dns-server.json ├── anti-malware-ext-win ├── README.md ├── azuredeploy.json ├── azuredeploy.parameters.json └── metadata.json ├── appservice-fileserver-sqlserver-ha ├── README.md ├── azuredeploy.json ├── azuredeploy.parameters.json ├── dsc │ ├── config-s2d.ps1.zip │ ├── config-second-dc.ps1.zip │ ├── config-sql.ps1.zip │ ├── prep-adforest.ps1.zip │ ├── prep-s2d.ps1.zip │ └── prep-sql.ps1.zip ├── metadata.json └── nestedtemplates │ ├── VirtualNetwork.json │ ├── VirtualNetworkDNS.json │ ├── deploy-ad.json │ ├── deploy-s2d-cluster.json │ ├── deploy-sql-cluster.json │ └── newVM.json ├── appservice-fileserver-standalone ├── README.md ├── azuredeploy.json ├── azuredeploy.parameters.json ├── metadata.json └── scripts │ ├── OnStartAzureVirtualMachineFileServer.ps1 │ └── fileserver.cr.zip ├── bootstorm-vm-boot-time ├── VMBootAll.ps1 ├── VMBootAll.zip ├── VMBootAllScript.ps1 ├── azuredeploy.json ├── azuredeploy.parameters.json ├── metadata.json ├── readme.azure.md └── readme.md ├── docker-swarm-ubuntu ├── README.md ├── azuredeploy-sshkeys.parameters.json ├── azuredeploy.json ├── azuredeploy.parameters.json ├── deploySwarm.ps1 ├── images │ ├── dockercomposescale.png │ ├── dockerinfo.png │ ├── dockerps.png │ ├── portal-publicipaddresses.png │ ├── portal-resourcegroups.png │ ├── swarm-framework.png │ ├── swarm.png │ └── swarmbrowser.png ├── metadata.json └── parts │ └── configure-swarm-azurestack.sh ├── ethereum-consortium-blockchain-poa ├── README.md └── common │ ├── mainTemplate.json │ ├── nested │ ├── createKeyVault.json │ ├── network-resources.json │ ├── network-resources.loadBalancer.json │ ├── storage.json │ └── vmss.json │ └── scripts │ ├── configure-poa.sh │ ├── configure-validator.sh │ ├── poa-utility.sh │ ├── run-validator.sh │ └── trigger-deployment-email.sh ├── ethereum-consortium-blockchain ├── genesis-template.json ├── marketplace │ ├── Connection │ │ ├── createUiDefinition.json │ │ └── mainTemplate.json │ ├── ConsortiumLeader │ │ ├── createUiDefinition.json │ │ └── mainTemplate.json │ ├── JoiningMember │ │ ├── createUiDefinition.json │ │ └── mainTemplate.json │ └── publisher-portal-assets │ │ ├── EULA (final 110216).htm │ │ ├── logos │ │ ├── blockchain-logo-hero-815x290p.png │ │ ├── blockchain-logo-large-115p.png │ │ ├── blockchain-logo-medium-90p.png │ │ ├── blockchain-logo-small-40p.png │ │ └── blockchain-logo-wide-255x115p.png │ │ └── sample-images │ │ └── eth-network-533x324p.png ├── nested │ ├── joiningNVAExtension.json │ ├── joiningVmExtension.json │ ├── joiningVmExtension.json.bak │ ├── loadBalancer.json │ ├── mnVMAuth-password.json │ ├── mnVMAuth-sshPublicKey.json │ ├── networkVirtualAppliance.json │ ├── txVMAuth-password.json │ ├── txVMAuth-sshPublicKey.json │ ├── updateRouteTableExtension.json │ └── vmExtension.json ├── powershell │ ├── BlockchainPackage.psm1 │ └── ConsortiumBridge.psm1 ├── quickstart │ ├── README.md │ ├── azuredeploy.json │ ├── azuredeploy.parameters.json │ ├── images │ │ ├── admin-site.png │ │ ├── azure1.png │ │ ├── azure10.png │ │ ├── azure11.png │ │ ├── azure12.png │ │ ├── azure2.png │ │ ├── azure3.png │ │ ├── azure4.png │ │ ├── azure5.png │ │ ├── azure6.png │ │ ├── azure7.png │ │ ├── azure8.png │ │ ├── azure9.png │ │ ├── contracts1.png │ │ ├── contracts10.png │ │ ├── contracts11.png │ │ ├── contracts12.png │ │ ├── contracts2.png │ │ ├── contracts3.png │ │ ├── contracts4.png │ │ ├── contracts5.png │ │ ├── contracts6.png │ │ ├── contracts7.png │ │ ├── contracts8.png │ │ ├── contracts9.png │ │ ├── deployment.png │ │ ├── eth-network.png │ │ └── output.png │ └── metadata.json ├── release │ ├── ethereum-consortium-blockchain-1.0.0.zip │ ├── ethereum-consortium-blockchain-1.0.1.zip │ └── ethereum-consortium-blockchain-1.0.2.zip ├── scripts │ ├── ConsortiumBridge.sh │ ├── CreateVPN.ps1 │ ├── UpdateRouteTable.ps1 │ ├── configure-geth-azureuser-joining.sh │ ├── configure-geth-azureuser.sh │ ├── configure-geth-joining.sh │ ├── configure-geth.sh │ ├── deployment-utility.sh │ ├── deployment-utility.sh.bak │ ├── etheradmin │ │ ├── app.js │ │ ├── etheradmin.handlebars │ │ ├── etherstartup.handlebars │ │ ├── main.handlebars │ │ ├── npm-shrinkwrap.json │ │ ├── package.json │ │ └── skeleton.css │ ├── sample-contracts.sol │ └── start-private-blockchain.sh └── validation │ ├── Readme.md │ ├── automated-validation-template-params.ps1 │ ├── automated-validation-variables.ps1 │ ├── automated-validation.ps1 │ ├── dummyTemplate.json │ ├── manual-validation.ps1 │ ├── modules │ ├── ARMTemplateDeployment.psm1 │ ├── ServicePrinciplePasswdLoader.ps1 │ └── Utility.psm1 │ ├── multinetwork-validation-variables.ps1 │ ├── multinetwork-validation.ps1 │ └── param-sets │ ├── azureDeploy-param-set-A1-7.ps1 │ ├── azureDeploy-param-set-canary.ps1 │ ├── dummyTemplate-param-set.ps1 │ ├── mainTemplate-param-set-A1-7.ps1 │ ├── mainTemplate-param-set-A8-11.ps1 │ ├── mainTemplate-param-set-D1-14.ps1 │ ├── mainTemplate-param-set-D1-15_v2.ps1 │ ├── mainTemplate-param-set-DS1-14.ps1 │ ├── mainTemplate-param-set-DS1-15_v2.ps1 │ ├── mainTemplate-param-set-F1-16.ps1 │ ├── mainTemplate-param-set-all-DSs.ps1 │ ├── mainTemplate-param-set-all-Ds.ps1 │ ├── mainTemplate-param-set-canary.ps1 │ ├── mainTemplate-param-set-happy-path.ps1 │ ├── mainTemplate-param-set-max-nodes.ps1 │ ├── mainTemplate-param-set-multinetwork-join-step2.ps1 │ ├── mainTemplate-param-set-multinetwork-join.ps1 │ ├── mainTemplate-param-set-multinetwork.ps1 │ └── mainTemplate-param-set-single.ps1 ├── hadoop-cluster ├── README.md ├── config │ ├── core-site.xml │ ├── hdfs-site.xml │ ├── mapred-site.xml │ ├── sources.txt │ └── yarn-site.xml ├── hadoop_cluster.json ├── jumpbox_node.json ├── master_node.json ├── parameters.json ├── scripts │ ├── hadoop.sh │ ├── hadoopSetup.sh │ ├── jumpboxSetup.sh │ └── template.service └── worker_node.json ├── iostorm-vm-iops-latency-managed-disks ├── azuredeploy.json └── azuredeploy.parameters.json ├── iostorm-vm-iops-latency ├── VMIOWorkload.zip ├── VMIOWorkloadController.zip ├── azuredeploy.json ├── azuredeploy.parameters.json ├── diskspd.exe ├── metadata.json └── readme.md ├── iostormplus-vm-iops-latency ├── IoStorm │ ├── IoStorm.psm1 │ ├── VMIOController │ │ ├── VMIOController.ps1 │ │ └── VMIOControllerTask.ps1 │ ├── VMIOWorkload │ │ ├── VMIOWorkload.ps1 │ │ ├── VMIOWorkloadTask.ps1 │ │ └── diskspd.exe │ └── workloaddeployment.json ├── PowershellRepo_AzureStack_2.5.0_RC.zip ├── SampleOutput │ ├── BlobContainer.jpg │ ├── CloudStorageTable.jpg │ ├── IoStormResults_html.jpg │ └── IoStormStatus.jpg └── readme.md ├── jetstress-2013-exchange-loadtest ├── CSDownloadISO.ps1 ├── JetstressWorkload.zip ├── azuredeploy.json ├── azuredeploy.parameters.json ├── metadata.json └── readme.md ├── mesos-windows-jumpbox ├── README.md ├── azuredeploy-sshkeys.parameters.json ├── azuredeploy.json ├── azuredeploy.parameters.json ├── deployMesos.ps1 ├── images │ ├── chronos-docker.png │ ├── chronos-ui.png │ ├── chronos.png │ ├── completed-hello-world.png │ ├── marathon-docker.png │ ├── marathon-newapp-status.png │ ├── marathon-newapp.png │ ├── mesos-agents.png │ ├── mesos-completed-tasks.png │ ├── mesos-frameworks.png │ ├── mesos-webui.png │ ├── mesos.png │ ├── portal-publicipaddresses.png │ └── portal-resourcegroups.png ├── metadata.json └── parts │ ├── configure-mesos-azurestack.sh │ └── nginx.conf ├── mongodb-cluster ├── README.md ├── config │ ├── core-site.xml │ ├── hdfs-site.xml │ ├── mapred-site.xml │ ├── sources.txt │ └── yarn-site.xml ├── hadoop_cluster.json ├── jumpbox_node.json ├── master_node.json ├── parameters.json ├── scripts │ ├── hadoop.sh │ ├── hadoopSetup.sh │ ├── jumpboxSetup.sh │ └── template.service └── worker_node.json ├── mysql-standalone-server-windows ├── MySql.Setup.CustomScriptExtension.ps1 ├── azuredeploy.json ├── azuredeploy.parameters.json ├── metadata.json └── readme.md ├── rds-deployment-existing-ad ├── Configuration.zip ├── README.md ├── azuredeploy.json ├── azuredeploy.parameters.json └── metadata.json ├── rds-deployment-ha-broker ├── DSC │ └── Configuration.zip ├── README.md ├── Scripts │ └── RdcbHaPostConfig.ps1 ├── azuredeploy.json ├── azuredeploy.parameters.json └── metadata.json ├── rds-deployment-ha-gateway ├── Configuration.zip ├── README.md ├── Scripts │ └── WebAndGwFarmAdd_PostConfig1.1.ps1 ├── azuredeploy.json ├── azuredeploy.parameters.json └── metadata.json ├── rds-deployment ├── Configuration.zip ├── README.md ├── azuredeploy.json ├── azuredeploy.parameters.json ├── metadata.json └── vnet-with-dns-server.json ├── rds-update-certificate ├── README.md ├── Scripts │ ├── New-ServicePrincipal.ps1 │ └── Script.ps1 ├── azuredeploy.json ├── azuredeploy.parameters.json └── metadata.json ├── rds-update-rdsh-collection ├── DSC │ └── Configuration.zip ├── README.md ├── Scripts │ └── Script.ps1 ├── azuredeploy.json ├── azuredeploy.parameters.json └── metadata.json ├── sample-hybrid-application ├── Hybrid-Deployment │ ├── AzureStack_Hybrid_Connection_Powershell.docx │ ├── Deploy-SolutionAzure.ps1 │ ├── Deploy-SolutionAzureStack.ps1 │ ├── Hybrid-Azure │ │ ├── azuredeploy.json │ │ └── azuredeploy.parameters.json │ ├── Hybrid-AzureStack │ │ ├── azuredeploy.json │ │ └── azurestackdeploy.parameters.json │ ├── appsettings.json │ ├── cmak_error_fix.ps1 │ ├── cross-cloud-scale │ │ ├── .deployment │ │ ├── host.json │ │ └── httpTrigger │ │ │ ├── function.json │ │ │ ├── function.proj │ │ │ ├── project.assets.json │ │ │ └── run.csx │ ├── northwind │ │ ├── sqldbcreate.ps1 │ │ └── sqlscript.json │ └── ref_architecture.jpg ├── Northwind.Insurance.Website.sln ├── Northwind.Insurance.Website │ ├── .bowerrc │ ├── Connected Services │ │ └── Application Insights │ │ │ └── ConnectedService.json │ ├── Controllers │ │ ├── HomeController.cs │ │ └── PlansController.cs │ ├── DbScripts │ │ └── InitDB.sql │ ├── Migrations │ │ ├── 20170705101701_InitialCreate.Designer.cs │ │ ├── 20170705101701_InitialCreate.cs │ │ ├── 20170706005142_IsSpecial.Designer.cs │ │ ├── 20170706005142_IsSpecial.cs │ │ ├── 20170706030119_ConfirmationCode.Designer.cs │ │ ├── 20170706030119_ConfirmationCode.cs │ │ ├── 20170710232939_Add TimeStamp.Designer.cs │ │ ├── 20170710232939_Add TimeStamp.cs │ │ └── InsuranceContextModelSnapshot.cs │ ├── Models │ │ ├── Enrollment.cs │ │ ├── HouseholdMember.cs │ │ ├── InsuranceContext.cs │ │ ├── InsuranceContextExtensions.cs │ │ ├── InsurancePlan.cs │ │ ├── PlanLevel.cs │ │ ├── Subscriber.cs │ │ └── SubscriberController.cs │ ├── Northwind.Insurance.Website.csproj │ ├── Program.cs │ ├── Properties │ │ ├── PublishProfiles │ │ │ ├── NorthwindInsurance - Web Deploy.pubxml │ │ │ ├── NorthwindInsuranceWebsite - Web Deploy.pubxml │ │ │ └── PublishFolder.pubxml │ │ └── launchSettings.json │ ├── Startup.cs │ ├── Views │ │ ├── Home │ │ │ ├── ApplyNow.cshtml │ │ │ └── Index.cshtml │ │ ├── Plans │ │ │ ├── Confirm.cshtml │ │ │ ├── PurchasePlan.cshtml │ │ │ └── ShowPlans.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ ├── _Layout.cshtml │ │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── app.config │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── bower.json │ ├── bundleconfig.json │ ├── obj │ │ └── Debug │ │ │ └── net452 │ │ │ └── win7-x86 │ │ │ ├── Northwind.Insurance.Website.AssemblyInfo.cs │ │ │ ├── Northwind.Insurance.Website.AssemblyInfoInputs.cache │ │ │ ├── Northwind.Insurance.Website.csproj.CoreCompileInputs.cache │ │ │ ├── Northwind.Insurance.Website.csprojAssemblyReference.cache │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ │ └── project.razor.json │ └── wwwroot │ │ ├── assets │ │ ├── arrow_large_left.png │ │ ├── arrow_large_right.png │ │ ├── arrow_left.png │ │ ├── arrow_left2.png │ │ ├── arrow_right.png │ │ ├── arrow_right2.png │ │ ├── arrowleft.png │ │ ├── arrowright.png │ │ ├── arrows.psd │ │ ├── black50.png │ │ ├── boxed_bgtile.png │ │ ├── bullet.png │ │ ├── bullet_boxed.png │ │ ├── bullets.png │ │ ├── bullets.psd │ │ ├── bullets2.png │ │ ├── coloredbg.png │ │ ├── grain.png │ │ ├── gridtile.png │ │ ├── gridtile_3x3.png │ │ ├── gridtile_3x3_white.png │ │ ├── gridtile_white.png │ │ ├── large_left.png │ │ ├── large_right.png │ │ ├── loader.gif │ │ ├── loader2.gif │ │ ├── navigdots.png │ │ ├── navigdots_bgtile.png │ │ ├── shadow1.png │ │ ├── shadow2.png │ │ ├── shadow3.png │ │ ├── small_arrows.psd │ │ ├── small_left.png │ │ ├── small_left_boxed.png │ │ ├── small_right.png │ │ ├── small_right_boxed.png │ │ ├── timer.png │ │ ├── timerdot.png │ │ ├── transparent.jpg │ │ └── white50.png │ │ ├── bodybg │ │ ├── bg1.css │ │ ├── bg10.css │ │ ├── bg2.css │ │ ├── bg3.css │ │ ├── bg4.css │ │ ├── bg5.css │ │ ├── bg6.css │ │ ├── bg7.css │ │ ├── bg8.css │ │ └── bg9.css │ │ ├── color │ │ ├── amethyst.css │ │ ├── blue.css │ │ ├── default.css │ │ ├── green.css │ │ ├── lime.css │ │ ├── orange.css │ │ ├── pink.css │ │ ├── red.css │ │ ├── sand.css │ │ └── yellow.css │ │ ├── contactform │ │ └── readme.txt │ │ ├── css │ │ ├── animate.css │ │ ├── bootstrap.min.css │ │ ├── nivo-lightbox-theme │ │ │ └── default │ │ │ │ ├── close.png │ │ │ │ ├── close@2x.png │ │ │ │ ├── default.css │ │ │ │ ├── loading.gif │ │ │ │ ├── loading@2x.gif │ │ │ │ ├── next.png │ │ │ │ ├── next@2x.png │ │ │ │ ├── prev.png │ │ │ │ └── prev@2x.png │ │ ├── nivo-lightbox.css │ │ ├── owl.carousel.css │ │ ├── owl.theme.css │ │ ├── site.css │ │ ├── site.min.css │ │ ├── style.css │ │ └── style.original.css │ │ ├── favicon.ico │ │ ├── font-awesome │ │ ├── css │ │ │ └── font-awesome.min.css │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ └── fontawesome-webfont.woff │ │ ├── less │ │ │ ├── bordered-pulled.less │ │ │ ├── core.less │ │ │ ├── fixed-width.less │ │ │ ├── font-awesome.less │ │ │ ├── icons.less │ │ │ ├── larger.less │ │ │ ├── list.less │ │ │ ├── mixins.less │ │ │ ├── path.less │ │ │ ├── rotated-flipped.less │ │ │ ├── spinning.less │ │ │ ├── stacked.less │ │ │ └── variables.less │ │ └── scss │ │ │ ├── _bordered-pulled.scss │ │ │ ├── _core.scss │ │ │ ├── _fixed-width.scss │ │ │ ├── _icons.scss │ │ │ ├── _larger.scss │ │ │ ├── _list.scss │ │ │ ├── _mixins.scss │ │ │ ├── _path.scss │ │ │ ├── _rotated-flipped.scss │ │ │ ├── _spinning.scss │ │ │ ├── _stacked.scss │ │ │ ├── _variables.scss │ │ │ └── font-awesome.scss │ │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ │ ├── images │ │ ├── banner1.svg │ │ ├── banner2.svg │ │ ├── banner3.svg │ │ └── banner4.svg │ │ ├── img │ │ ├── bodybg │ │ │ ├── bg1.png │ │ │ ├── bg10.png │ │ │ ├── bg2.png │ │ │ ├── bg3.jpg │ │ │ ├── bg4.png │ │ │ ├── bg5.png │ │ │ ├── bg6.png │ │ │ ├── bg7.png │ │ │ ├── bg8.jpg │ │ │ └── bg9.png │ │ ├── dummy │ │ │ ├── bg1.jpg │ │ │ ├── img-1.jpg │ │ │ ├── img-1.png │ │ │ ├── img-3.png │ │ │ ├── partner-1.jpg │ │ │ ├── partner-2.jpg │ │ │ ├── partner-3.jpg │ │ │ └── partner-4.jpg │ │ ├── logo.png │ │ ├── parallax │ │ │ └── 1.jpg │ │ ├── photo │ │ │ ├── 1.jpg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ ├── 4.jpg │ │ │ ├── 5.jpg │ │ │ └── 6.jpg │ │ ├── slides │ │ │ ├── slide1 │ │ │ │ ├── bg.jpg │ │ │ │ └── img-1.png │ │ │ ├── slide2 │ │ │ │ └── bg.jpg │ │ │ └── slide3 │ │ │ │ ├── bg.jpg │ │ │ │ ├── img1.jpg │ │ │ │ └── img1.png │ │ ├── team │ │ │ ├── 1.jpg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ └── 4.jpg │ │ └── testimonials │ │ │ ├── 1.jpg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ ├── 4.jpg │ │ │ ├── 5.jpg │ │ │ └── 6.jpg │ │ ├── js │ │ ├── bootstrap.min.js │ │ ├── custom.js │ │ ├── jquery-1.10.2.js │ │ ├── jquery.appear.js │ │ ├── jquery.easing.min.js │ │ ├── jquery.min.js │ │ ├── jquery.scrollTo.js │ │ ├── nivo-lightbox.min.js │ │ ├── owl.carousel.min.js │ │ ├── site.js │ │ ├── site.min.js │ │ ├── stellar.js │ │ └── wow.min.js │ │ ├── lib │ │ ├── bootstrap │ │ │ ├── .bower.json │ │ │ ├── LICENSE │ │ │ └── dist │ │ │ │ ├── css │ │ │ │ ├── bootstrap-theme.css │ │ │ │ ├── bootstrap-theme.css.map │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ ├── bootstrap-theme.min.css.map │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ ├── bootstrap.min.css │ │ │ │ └── bootstrap.min.css.map │ │ │ │ ├── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ └── js │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── npm.js │ │ ├── jquery-validation-unobtrusive │ │ │ ├── .bower.json │ │ │ ├── jquery.validate.unobtrusive.js │ │ │ └── jquery.validate.unobtrusive.min.js │ │ ├── jquery-validation │ │ │ ├── .bower.json │ │ │ ├── LICENSE.md │ │ │ └── dist │ │ │ │ ├── additional-methods.js │ │ │ │ ├── additional-methods.min.js │ │ │ │ ├── jquery.validate.js │ │ │ │ └── jquery.validate.min.js │ │ └── jquery │ │ │ ├── .bower.json │ │ │ ├── LICENSE.txt │ │ │ └── dist │ │ │ ├── jquery.js │ │ │ ├── jquery.min.js │ │ │ └── jquery.min.map │ │ └── plugins │ │ └── cubeportfolio │ │ ├── css │ │ ├── cubeportfolio.css │ │ └── cubeportfolio.min.css │ │ ├── img │ │ ├── cbp-loading-popup.gif │ │ ├── cbp-loading.gif │ │ ├── cbp-sprite.png │ │ └── cbp-sprite.psd │ │ └── js │ │ ├── jquery.cubeportfolio.js │ │ └── jquery.cubeportfolio.min.js └── README.md ├── serviceFabricCluster-multipleNodeTypes ├── media │ └── azure-stack-solution-template-app-fabric-offer │ │ ├── image1.png │ │ ├── image10.png │ │ ├── image11.png │ │ ├── image14.png │ │ ├── image15.png │ │ ├── image16.png │ │ ├── image2.png │ │ ├── image3.png │ │ ├── image4.png │ │ ├── image5.png │ │ ├── image6.png │ │ ├── image8.png │ │ └── image9.png ├── readme.md └── scripts │ └── Publish-SecretToVault.ps1 ├── sql-2014-non-ha ├── Readme.md ├── azuredeploy.json ├── azuredeploy.parameters.json ├── deploySqlStandalone.json ├── deploySqlStandalone.ps1.zip ├── metadata.json └── sqlVmTemplate.json ├── sql-2014-standalone ├── Readme.md ├── azuredeploy.json ├── deploySqlStandalone_NonDomain.zip └── metadata.json ├── sql-2016-alwayson ├── CreateADPDC.ps1.zip ├── CreateFailoverCluster.ps1.zip ├── CreateFileShareWitness.ps1.zip ├── PrepareAlwaysOnSqlServer.ps1.zip ├── Readme.md ├── azuredeploy.json ├── azuredeploy.json.bak ├── azuredeploy.parameters.json ├── configuringAlwaysOn.json ├── creatingADNIC.json ├── creatingNICS.json ├── metadata.json ├── preparingSqlServer.json ├── provisioningADVM.json ├── provisioningSQLVMs.json ├── setupLBs-e.json ├── storageAccountVirtualNetworkPublicIP.json └── vnet-with-dns-server.json ├── vmaccess-ext-win ├── README.md ├── azuredeploy.json ├── azuredeploy.parameters.json └── metadata.json ├── vs2013-tcta ├── Readme.md ├── azuredeploy.json ├── azuredeploy.parameters.json ├── consoleVMTemplate.json ├── deployTestAgent.json ├── deployTestAgent.ps1.zip ├── deployTestConsole.json ├── deployTestConsole.ps1.zip ├── joindomain.json ├── metadata.json └── taVMTemplate.json └── wsus ├── InstallWSUS.ps1 ├── azuredeploy.json ├── azuredeploy.parameters.json └── metadata.json /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/.DS_Store -------------------------------------------------------------------------------- /100-Blank-Template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/100-Blank-Template/README.md -------------------------------------------------------------------------------- /100-Blank-Template/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/100-Blank-Template/azuredeploy.json -------------------------------------------------------------------------------- /100-Blank-Template/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/100-Blank-Template/azuredeploy.parameters.json -------------------------------------------------------------------------------- /100-Blank-Template/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/100-Blank-Template/metadata.json -------------------------------------------------------------------------------- /101-acsengine-docker-swarm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-acsengine-docker-swarm/README.md -------------------------------------------------------------------------------- /101-acsengine-docker-swarm/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-acsengine-docker-swarm/azuredeploy.json -------------------------------------------------------------------------------- /101-acsengine-docker-swarm/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-acsengine-docker-swarm/azuredeploy.parameters.json -------------------------------------------------------------------------------- /101-acsengine-docker-swarm/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-acsengine-docker-swarm/metadata.json -------------------------------------------------------------------------------- /101-acsengine-docker-swarmmode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-acsengine-docker-swarmmode/README.md -------------------------------------------------------------------------------- /101-acsengine-docker-swarmmode/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-acsengine-docker-swarmmode/azuredeploy.json -------------------------------------------------------------------------------- /101-acsengine-docker-swarmmode/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-acsengine-docker-swarmmode/azuredeploy.parameters.json -------------------------------------------------------------------------------- /101-acsengine-docker-swarmmode/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-acsengine-docker-swarmmode/metadata.json -------------------------------------------------------------------------------- /101-availabilityset-multiplevm-create/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-availabilityset-multiplevm-create/README.md -------------------------------------------------------------------------------- /101-availabilityset-multiplevm-create/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-availabilityset-multiplevm-create/azuredeploy.json -------------------------------------------------------------------------------- /101-availabilityset-multiplevm-create/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-availabilityset-multiplevm-create/azuredeploy.parameters.json -------------------------------------------------------------------------------- /101-availabilityset-multiplevm-create/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-availabilityset-multiplevm-create/metadata.json -------------------------------------------------------------------------------- /101-availabilityset-multiplevm-linux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-availabilityset-multiplevm-linux/README.md -------------------------------------------------------------------------------- /101-availabilityset-multiplevm-linux/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-availabilityset-multiplevm-linux/azuredeploy.json -------------------------------------------------------------------------------- /101-availabilityset-multiplevm-linux/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-availabilityset-multiplevm-linux/azuredeploy.parameters.json -------------------------------------------------------------------------------- /101-availabilityset-multiplevm-linux/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-availabilityset-multiplevm-linux/metadata.json -------------------------------------------------------------------------------- /101-create-dnszones/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-create-dnszones/README.md -------------------------------------------------------------------------------- /101-create-dnszones/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-create-dnszones/azuredeploy.json -------------------------------------------------------------------------------- /101-create-dnszones/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-create-dnszones/azuredeploy.parameters.json -------------------------------------------------------------------------------- /101-create-dnszones/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-create-dnszones/metadata.json -------------------------------------------------------------------------------- /101-create-nsg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-create-nsg/README.md -------------------------------------------------------------------------------- /101-create-nsg/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-create-nsg/azuredeploy.json -------------------------------------------------------------------------------- /101-create-nsg/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-create-nsg/azuredeploy.parameters.json -------------------------------------------------------------------------------- /101-create-nsg/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-create-nsg/metadata.json -------------------------------------------------------------------------------- /101-create-storage-account/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-create-storage-account/README.md -------------------------------------------------------------------------------- /101-create-storage-account/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-create-storage-account/azuredeploy.json -------------------------------------------------------------------------------- /101-create-storage-account/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-create-storage-account/azuredeploy.parameters.json -------------------------------------------------------------------------------- /101-create-storage-account/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-create-storage-account/metadata.json -------------------------------------------------------------------------------- /101-create-vnet-full/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-create-vnet-full/README.md -------------------------------------------------------------------------------- /101-create-vnet-full/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-create-vnet-full/azuredeploy.json -------------------------------------------------------------------------------- /101-create-vnet-full/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-create-vnet-full/azuredeploy.parameters.json -------------------------------------------------------------------------------- /101-create-vnet-full/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-create-vnet-full/metadata.json -------------------------------------------------------------------------------- /101-create-vnet-nsg-only/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-create-vnet-nsg-only/README.md -------------------------------------------------------------------------------- /101-create-vnet-nsg-only/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-create-vnet-nsg-only/azuredeploy.json -------------------------------------------------------------------------------- /101-create-vnet-nsg-only/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-create-vnet-nsg-only/azuredeploy.parameters.json -------------------------------------------------------------------------------- /101-create-vnet-nsg-only/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-create-vnet-nsg-only/metadata.json -------------------------------------------------------------------------------- /101-create-vnet-only/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-create-vnet-only/README.md -------------------------------------------------------------------------------- /101-create-vnet-only/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-create-vnet-only/azuredeploy.json -------------------------------------------------------------------------------- /101-create-vnet-only/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-create-vnet-only/azuredeploy.parameters.json -------------------------------------------------------------------------------- /101-create-vnet-only/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-create-vnet-only/metadata.json -------------------------------------------------------------------------------- /101-mysqladapter-add-hosting-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-mysqladapter-add-hosting-server/README.md -------------------------------------------------------------------------------- /101-mysqladapter-add-hosting-server/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-mysqladapter-add-hosting-server/azuredeploy.json -------------------------------------------------------------------------------- /101-mysqladapter-add-hosting-server/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-mysqladapter-add-hosting-server/azuredeploy.parameters.json -------------------------------------------------------------------------------- /101-mysqladapter-add-hosting-server/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-mysqladapter-add-hosting-server/metadata.json -------------------------------------------------------------------------------- /101-mysqladapter-create-database/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-mysqladapter-create-database/README.md -------------------------------------------------------------------------------- /101-mysqladapter-create-database/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-mysqladapter-create-database/azuredeploy.json -------------------------------------------------------------------------------- /101-mysqladapter-create-database/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-mysqladapter-create-database/azuredeploy.parameters.json -------------------------------------------------------------------------------- /101-mysqladapter-create-database/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-mysqladapter-create-database/metadata.json -------------------------------------------------------------------------------- /101-simple-linux-vm-custom-managed-disk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-simple-linux-vm-custom-managed-disk/README.md -------------------------------------------------------------------------------- /101-simple-linux-vm-custom-managed-disk/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-simple-linux-vm-custom-managed-disk/azuredeploy.json -------------------------------------------------------------------------------- /101-simple-linux-vm-custom-managed-disk/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-simple-linux-vm-custom-managed-disk/azuredeploy.parameters.json -------------------------------------------------------------------------------- /101-simple-linux-vm-custom-managed-disk/deploy_image.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-simple-linux-vm-custom-managed-disk/deploy_image.ps1 -------------------------------------------------------------------------------- /101-simple-linux-vm-custom-managed-disk/images/deploytoasdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-simple-linux-vm-custom-managed-disk/images/deploytoasdk.png -------------------------------------------------------------------------------- /101-simple-linux-vm-custom-managed-disk/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-simple-linux-vm-custom-managed-disk/images/image.png -------------------------------------------------------------------------------- /101-simple-linux-vm-custom-managed-disk/images/rg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-simple-linux-vm-custom-managed-disk/images/rg.png -------------------------------------------------------------------------------- /101-simple-linux-vm-custom-managed-disk/images/template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-simple-linux-vm-custom-managed-disk/images/template.png -------------------------------------------------------------------------------- /101-simple-linux-vm-custom-managed-disk/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-simple-linux-vm-custom-managed-disk/metadata.json -------------------------------------------------------------------------------- /101-simple-windows-vm-custom-managed-disk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-simple-windows-vm-custom-managed-disk/README.md -------------------------------------------------------------------------------- /101-simple-windows-vm-custom-managed-disk/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-simple-windows-vm-custom-managed-disk/azuredeploy.json -------------------------------------------------------------------------------- /101-simple-windows-vm-custom-managed-disk/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-simple-windows-vm-custom-managed-disk/azuredeploy.parameters.json -------------------------------------------------------------------------------- /101-simple-windows-vm-custom-managed-disk/deploy_image.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-simple-windows-vm-custom-managed-disk/deploy_image.ps1 -------------------------------------------------------------------------------- /101-simple-windows-vm-custom-managed-disk/images/deploytoasdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-simple-windows-vm-custom-managed-disk/images/deploytoasdk.png -------------------------------------------------------------------------------- /101-simple-windows-vm-custom-managed-disk/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-simple-windows-vm-custom-managed-disk/images/image.png -------------------------------------------------------------------------------- /101-simple-windows-vm-custom-managed-disk/images/rg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-simple-windows-vm-custom-managed-disk/images/rg.png -------------------------------------------------------------------------------- /101-simple-windows-vm-custom-managed-disk/images/template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-simple-windows-vm-custom-managed-disk/images/template.png -------------------------------------------------------------------------------- /101-simple-windows-vm-custom-managed-disk/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-simple-windows-vm-custom-managed-disk/metadata.json -------------------------------------------------------------------------------- /101-sqladapter-add-hosting-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-sqladapter-add-hosting-server/README.md -------------------------------------------------------------------------------- /101-sqladapter-add-hosting-server/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-sqladapter-add-hosting-server/azuredeploy.json -------------------------------------------------------------------------------- /101-sqladapter-add-hosting-server/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-sqladapter-add-hosting-server/azuredeploy.parameters.json -------------------------------------------------------------------------------- /101-sqladapter-add-hosting-server/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-sqladapter-add-hosting-server/metadata.json -------------------------------------------------------------------------------- /101-sqladapter-create-database/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-sqladapter-create-database/README.md -------------------------------------------------------------------------------- /101-sqladapter-create-database/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-sqladapter-create-database/azuredeploy.json -------------------------------------------------------------------------------- /101-sqladapter-create-database/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-sqladapter-create-database/azuredeploy.parameters.json -------------------------------------------------------------------------------- /101-sqladapter-create-database/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-sqladapter-create-database/metadata.json -------------------------------------------------------------------------------- /101-vm-apply-extension-multiple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-apply-extension-multiple/README.md -------------------------------------------------------------------------------- /101-vm-apply-extension-multiple/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-apply-extension-multiple/azuredeploy.json -------------------------------------------------------------------------------- /101-vm-apply-extension-multiple/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-apply-extension-multiple/azuredeploy.parameters.json -------------------------------------------------------------------------------- /101-vm-apply-extension-multiple/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-apply-extension-multiple/metadata.json -------------------------------------------------------------------------------- /101-vm-create-from-customimage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-create-from-customimage/README.md -------------------------------------------------------------------------------- /101-vm-create-from-customimage/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-create-from-customimage/azuredeploy.json -------------------------------------------------------------------------------- /101-vm-create-from-customimage/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-create-from-customimage/azuredeploy.parameters.json -------------------------------------------------------------------------------- /101-vm-create-from-customimage/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-create-from-customimage/metadata.json -------------------------------------------------------------------------------- /101-vm-linux-apply-extension-customscript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-linux-apply-extension-customscript/README.md -------------------------------------------------------------------------------- /101-vm-linux-apply-extension-customscript/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-linux-apply-extension-customscript/azuredeploy.json -------------------------------------------------------------------------------- /101-vm-linux-apply-extension-customscript/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-linux-apply-extension-customscript/azuredeploy.parameters.json -------------------------------------------------------------------------------- /101-vm-linux-apply-extension-customscript/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-linux-apply-extension-customscript/metadata.json -------------------------------------------------------------------------------- /101-vm-linux-apply-extension-docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-linux-apply-extension-docker/README.md -------------------------------------------------------------------------------- /101-vm-linux-apply-extension-docker/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-linux-apply-extension-docker/azuredeploy.json -------------------------------------------------------------------------------- /101-vm-linux-apply-extension-docker/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-linux-apply-extension-docker/azuredeploy.parameters.json -------------------------------------------------------------------------------- /101-vm-linux-apply-extension-docker/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-linux-apply-extension-docker/metadata.json -------------------------------------------------------------------------------- /101-vm-linux-apply-extension-vmaccess/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-linux-apply-extension-vmaccess/README.md -------------------------------------------------------------------------------- /101-vm-linux-apply-extension-vmaccess/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-linux-apply-extension-vmaccess/azuredeploy.json -------------------------------------------------------------------------------- /101-vm-linux-apply-extension-vmaccess/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-linux-apply-extension-vmaccess/azuredeploy.parameters.json -------------------------------------------------------------------------------- /101-vm-linux-apply-extension-vmaccess/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-linux-apply-extension-vmaccess/metadata.json -------------------------------------------------------------------------------- /101-vm-linux-create-passwordfromkv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-linux-create-passwordfromkv/README.md -------------------------------------------------------------------------------- /101-vm-linux-create-passwordfromkv/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-linux-create-passwordfromkv/azuredeploy.json -------------------------------------------------------------------------------- /101-vm-linux-create-passwordfromkv/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-linux-create-passwordfromkv/azuredeploy.parameters.json -------------------------------------------------------------------------------- /101-vm-linux-create-passwordfromkv/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-linux-create-passwordfromkv/metadata.json -------------------------------------------------------------------------------- /101-vm-linux-create-with-extension-diagnostic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-linux-create-with-extension-diagnostic/README.md -------------------------------------------------------------------------------- /101-vm-linux-create-with-extension-diagnostic/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-linux-create-with-extension-diagnostic/azuredeploy.json -------------------------------------------------------------------------------- /101-vm-linux-create-with-extension-diagnostic/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-linux-create-with-extension-diagnostic/azuredeploy.parameters.json -------------------------------------------------------------------------------- /101-vm-linux-create-with-extension-diagnostic/images/DeployParameters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-linux-create-with-extension-diagnostic/images/DeployParameters.png -------------------------------------------------------------------------------- /101-vm-linux-create-with-extension-diagnostic/images/GusetMetrics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-linux-create-with-extension-diagnostic/images/GusetMetrics.png -------------------------------------------------------------------------------- /101-vm-linux-create-with-extension-diagnostic/images/Log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-linux-create-with-extension-diagnostic/images/Log.png -------------------------------------------------------------------------------- /101-vm-linux-create-with-extension-diagnostic/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-linux-create-with-extension-diagnostic/metadata.json -------------------------------------------------------------------------------- /101-vm-linux-create/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-linux-create/README.md -------------------------------------------------------------------------------- /101-vm-linux-create/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-linux-create/azuredeploy.json -------------------------------------------------------------------------------- /101-vm-linux-create/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-linux-create/azuredeploy.parameters.json -------------------------------------------------------------------------------- /101-vm-linux-create/centos.6.9.azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-linux-create/centos.6.9.azuredeploy.parameters.json -------------------------------------------------------------------------------- /101-vm-linux-create/centos.7.3.azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-linux-create/centos.7.3.azuredeploy.parameters.json -------------------------------------------------------------------------------- /101-vm-linux-create/centos.7.4.azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-linux-create/centos.7.4.azuredeploy.parameters.json -------------------------------------------------------------------------------- /101-vm-linux-create/centos.7.5.azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-linux-create/centos.7.5.azuredeploy.parameters.json -------------------------------------------------------------------------------- /101-vm-linux-create/debian.8.azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-linux-create/debian.8.azuredeploy.parameters.json -------------------------------------------------------------------------------- /101-vm-linux-create/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-linux-create/metadata.json -------------------------------------------------------------------------------- /101-vm-linux-create/suse.11sp4.azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-linux-create/suse.11sp4.azuredeploy.parameters.json -------------------------------------------------------------------------------- /101-vm-linux-create/suse.12sp2.azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-linux-create/suse.12sp2.azuredeploy.parameters.json -------------------------------------------------------------------------------- /101-vm-linux-create/suse.12sp3.azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-linux-create/suse.12sp3.azuredeploy.parameters.json -------------------------------------------------------------------------------- /101-vm-linux-create/ubuntu.14.04.azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-linux-create/ubuntu.14.04.azuredeploy.parameters.json -------------------------------------------------------------------------------- /101-vm-linux-create/ubuntu.16.04.azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-linux-create/ubuntu.16.04.azuredeploy.parameters.json -------------------------------------------------------------------------------- /101-vm-linux-docker-registry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-linux-docker-registry/README.md -------------------------------------------------------------------------------- /101-vm-linux-docker-registry/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-linux-docker-registry/azuredeploy.json -------------------------------------------------------------------------------- /101-vm-linux-docker-registry/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-linux-docker-registry/azuredeploy.parameters.json -------------------------------------------------------------------------------- /101-vm-linux-docker-registry/connect.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-linux-docker-registry/connect.ps1 -------------------------------------------------------------------------------- /101-vm-linux-docker-registry/script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-linux-docker-registry/script.sh -------------------------------------------------------------------------------- /101-vm-linux-docker-registry/setup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-linux-docker-registry/setup.ps1 -------------------------------------------------------------------------------- /101-vm-linux-minikube/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-linux-minikube/README.md -------------------------------------------------------------------------------- /101-vm-linux-minikube/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-linux-minikube/azuredeploy.json -------------------------------------------------------------------------------- /101-vm-linux-minikube/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-linux-minikube/azuredeploy.parameters.json -------------------------------------------------------------------------------- /101-vm-linux-minikube/images/PublicIP.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-linux-minikube/images/PublicIP.PNG -------------------------------------------------------------------------------- /101-vm-linux-minikube/images/RemoteDesktop.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-linux-minikube/images/RemoteDesktop.PNG -------------------------------------------------------------------------------- /101-vm-linux-minikube/images/RemoteDesktopCred.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-linux-minikube/images/RemoteDesktopCred.PNG -------------------------------------------------------------------------------- /101-vm-linux-minikube/images/ResourceGroup.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-linux-minikube/images/ResourceGroup.PNG -------------------------------------------------------------------------------- /101-vm-linux-minikube/images/minikube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-linux-minikube/images/minikube.png -------------------------------------------------------------------------------- /101-vm-linux-minikube/images/minikubearch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-linux-minikube/images/minikubearch.png -------------------------------------------------------------------------------- /101-vm-linux-minikube/images/samples: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /101-vm-linux-minikube/images/terminal.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-linux-minikube/images/terminal.PNG -------------------------------------------------------------------------------- /101-vm-linux-minikube/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-linux-minikube/metadata.json -------------------------------------------------------------------------------- /101-vm-linux-minikube/script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-linux-minikube/script.sh -------------------------------------------------------------------------------- /101-vm-windows-apply-extension-bginfo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-windows-apply-extension-bginfo/README.md -------------------------------------------------------------------------------- /101-vm-windows-apply-extension-bginfo/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-windows-apply-extension-bginfo/azuredeploy.json -------------------------------------------------------------------------------- /101-vm-windows-apply-extension-bginfo/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-windows-apply-extension-bginfo/azuredeploy.parameters.json -------------------------------------------------------------------------------- /101-vm-windows-apply-extension-bginfo/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-windows-apply-extension-bginfo/metadata.json -------------------------------------------------------------------------------- /101-vm-windows-apply-extension-customscript-cmd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-windows-apply-extension-customscript-cmd/README.md -------------------------------------------------------------------------------- /101-vm-windows-apply-extension-customscript-cmd/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-windows-apply-extension-customscript-cmd/azuredeploy.json -------------------------------------------------------------------------------- /101-vm-windows-apply-extension-customscript-cmd/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-windows-apply-extension-customscript-cmd/azuredeploy.parameters.json -------------------------------------------------------------------------------- /101-vm-windows-apply-extension-customscript-cmd/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-windows-apply-extension-customscript-cmd/metadata.json -------------------------------------------------------------------------------- /101-vm-windows-apply-extension-customscript-pscmd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-windows-apply-extension-customscript-pscmd/README.md -------------------------------------------------------------------------------- /101-vm-windows-apply-extension-customscript-pscmd/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-windows-apply-extension-customscript-pscmd/azuredeploy.json -------------------------------------------------------------------------------- /101-vm-windows-apply-extension-customscript-pscmd/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-windows-apply-extension-customscript-pscmd/metadata.json -------------------------------------------------------------------------------- /101-vm-windows-apply-extension-customscript-sf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-windows-apply-extension-customscript-sf/README.md -------------------------------------------------------------------------------- /101-vm-windows-apply-extension-customscript-sf/VMCustomScriptExtension.ps1: -------------------------------------------------------------------------------- 1 | Get-Process | Out-File C:\Users\Public\Documents\VMCustomScriptExtensionOutput.txt -------------------------------------------------------------------------------- /101-vm-windows-apply-extension-customscript-sf/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-windows-apply-extension-customscript-sf/azuredeploy.json -------------------------------------------------------------------------------- /101-vm-windows-apply-extension-customscript-sf/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-windows-apply-extension-customscript-sf/azuredeploy.parameters.json -------------------------------------------------------------------------------- /101-vm-windows-apply-extension-customscript-sf/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-windows-apply-extension-customscript-sf/metadata.json -------------------------------------------------------------------------------- /101-vm-windows-create-api-profile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-windows-create-api-profile/README.md -------------------------------------------------------------------------------- /101-vm-windows-create-api-profile/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-windows-create-api-profile/azuredeploy.json -------------------------------------------------------------------------------- /101-vm-windows-create-api-profile/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-windows-create-api-profile/azuredeploy.parameters.json -------------------------------------------------------------------------------- /101-vm-windows-create-api-profile/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-windows-create-api-profile/metadata.json -------------------------------------------------------------------------------- /101-vm-windows-create-passwordfromkv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-windows-create-passwordfromkv/README.md -------------------------------------------------------------------------------- /101-vm-windows-create-passwordfromkv/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-windows-create-passwordfromkv/azuredeploy.json -------------------------------------------------------------------------------- /101-vm-windows-create-passwordfromkv/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-windows-create-passwordfromkv/azuredeploy.parameters.json -------------------------------------------------------------------------------- /101-vm-windows-create-passwordfromkv/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-windows-create-passwordfromkv/metadata.json -------------------------------------------------------------------------------- /101-vm-windows-create-with-extension-diagnostic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-windows-create-with-extension-diagnostic/README.md -------------------------------------------------------------------------------- /101-vm-windows-create-with-extension-diagnostic/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-windows-create-with-extension-diagnostic/azuredeploy.json -------------------------------------------------------------------------------- /101-vm-windows-create-with-extension-diagnostic/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-windows-create-with-extension-diagnostic/azuredeploy.parameters.json -------------------------------------------------------------------------------- /101-vm-windows-create-with-extension-diagnostic/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-windows-create-with-extension-diagnostic/metadata.json -------------------------------------------------------------------------------- /101-vm-windows-create/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-windows-create/README.md -------------------------------------------------------------------------------- /101-vm-windows-create/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-windows-create/azuredeploy.json -------------------------------------------------------------------------------- /101-vm-windows-create/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-windows-create/azuredeploy.parameters.json -------------------------------------------------------------------------------- /101-vm-windows-create/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-windows-create/metadata.json -------------------------------------------------------------------------------- /101-vm-windows-createmultiple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-windows-createmultiple/README.md -------------------------------------------------------------------------------- /101-vm-windows-createmultiple/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-windows-createmultiple/azuredeploy.json -------------------------------------------------------------------------------- /101-vm-windows-createmultiple/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-windows-createmultiple/azuredeploy.parameters.json -------------------------------------------------------------------------------- /101-vm-windows-createmultiple/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-windows-createmultiple/metadata.json -------------------------------------------------------------------------------- /101-vm-windowsandlinux-createmultiple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-windowsandlinux-createmultiple/README.md -------------------------------------------------------------------------------- /101-vm-windowsandlinux-createmultiple/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-windowsandlinux-createmultiple/azuredeploy.json -------------------------------------------------------------------------------- /101-vm-windowsandlinux-createmultiple/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-windowsandlinux-createmultiple/azuredeploy.parameters.json -------------------------------------------------------------------------------- /101-vm-windowsandlinux-createmultiple/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vm-windowsandlinux-createmultiple/metadata.json -------------------------------------------------------------------------------- /101-vmss-linux-vm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vmss-linux-vm/README.md -------------------------------------------------------------------------------- /101-vmss-linux-vm/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vmss-linux-vm/azuredeploy.json -------------------------------------------------------------------------------- /101-vmss-linux-vm/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vmss-linux-vm/azuredeploy.parameters.json -------------------------------------------------------------------------------- /101-vmss-linux-vm/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vmss-linux-vm/metadata.json -------------------------------------------------------------------------------- /101-vmss-windows-vm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vmss-windows-vm/README.md -------------------------------------------------------------------------------- /101-vmss-windows-vm/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vmss-windows-vm/azuredeploy.json -------------------------------------------------------------------------------- /101-vmss-windows-vm/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vmss-windows-vm/azuredeploy.parameters.json -------------------------------------------------------------------------------- /101-vmss-windows-vm/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101-vmss-windows-vm/metadata.json -------------------------------------------------------------------------------- /101Linux-Empty-AttachDataDisk-managed/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101Linux-Empty-AttachDataDisk-managed/README.md -------------------------------------------------------------------------------- /101Linux-Empty-AttachDataDisk-managed/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101Linux-Empty-AttachDataDisk-managed/azuredeploy.json -------------------------------------------------------------------------------- /101Linux-Empty-AttachDataDisk-managed/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101Linux-Empty-AttachDataDisk-managed/azuredeploy.parameters.json -------------------------------------------------------------------------------- /101Linux-Empty-AttachDataDisk-managed/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101Linux-Empty-AttachDataDisk-managed/metadata.json -------------------------------------------------------------------------------- /101Linux-EmptyDataDisk-managed/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101Linux-EmptyDataDisk-managed/README.md -------------------------------------------------------------------------------- /101Linux-EmptyDataDisk-managed/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101Linux-EmptyDataDisk-managed/azuredeploy.json -------------------------------------------------------------------------------- /101Linux-EmptyDataDisk-managed/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101Linux-EmptyDataDisk-managed/azuredeploy.parameters.json -------------------------------------------------------------------------------- /101Linux-EmptyDataDisk-managed/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101Linux-EmptyDataDisk-managed/metadata.json -------------------------------------------------------------------------------- /101Windows-Empty-AttachDataDisk-managed/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101Windows-Empty-AttachDataDisk-managed/README.md -------------------------------------------------------------------------------- /101Windows-Empty-AttachDataDisk-managed/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101Windows-Empty-AttachDataDisk-managed/azuredeploy.json -------------------------------------------------------------------------------- /101Windows-Empty-AttachDataDisk-managed/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101Windows-Empty-AttachDataDisk-managed/azuredeploy.parameters.json -------------------------------------------------------------------------------- /101Windows-Empty-AttachDataDisk-managed/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/101Windows-Empty-AttachDataDisk-managed/metadata.json -------------------------------------------------------------------------------- /201-vm-linux-comprehensive-with-managed-disks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/201-vm-linux-comprehensive-with-managed-disks/README.md -------------------------------------------------------------------------------- /201-vm-linux-comprehensive-with-managed-disks/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/201-vm-linux-comprehensive-with-managed-disks/azuredeploy.json -------------------------------------------------------------------------------- /201-vm-linux-comprehensive-with-managed-disks/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/201-vm-linux-comprehensive-with-managed-disks/azuredeploy.parameters.json -------------------------------------------------------------------------------- /201-vm-linux-comprehensive-with-managed-disks/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/201-vm-linux-comprehensive-with-managed-disks/metadata.json -------------------------------------------------------------------------------- /201-vm-linux-comprehensive-with-managed-disks/script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/201-vm-linux-comprehensive-with-managed-disks/script.sh -------------------------------------------------------------------------------- /201-vm-linux-comprehensive/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/201-vm-linux-comprehensive/README.md -------------------------------------------------------------------------------- /201-vm-linux-comprehensive/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/201-vm-linux-comprehensive/azuredeploy.json -------------------------------------------------------------------------------- /201-vm-linux-comprehensive/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/201-vm-linux-comprehensive/azuredeploy.parameters.json -------------------------------------------------------------------------------- /201-vm-linux-comprehensive/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/201-vm-linux-comprehensive/metadata.json -------------------------------------------------------------------------------- /201-vm-linux-comprehensive/script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/201-vm-linux-comprehensive/script.sh -------------------------------------------------------------------------------- /201-vm-ubuntu-apply-extension-ospatching/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/201-vm-ubuntu-apply-extension-ospatching/README.md -------------------------------------------------------------------------------- /201-vm-ubuntu-apply-extension-ospatching/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/201-vm-ubuntu-apply-extension-ospatching/azuredeploy.json -------------------------------------------------------------------------------- /201-vm-ubuntu-apply-extension-ospatching/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/201-vm-ubuntu-apply-extension-ospatching/azuredeploy.parameters.json -------------------------------------------------------------------------------- /201-vm-ubuntu-apply-extension-ospatching/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/201-vm-ubuntu-apply-extension-ospatching/metadata.json -------------------------------------------------------------------------------- /201-vm-windows-comprehensive-with-managed-disks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/201-vm-windows-comprehensive-with-managed-disks/README.md -------------------------------------------------------------------------------- /201-vm-windows-comprehensive-with-managed-disks/ValidateWindowsFeature.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/201-vm-windows-comprehensive-with-managed-disks/ValidateWindowsFeature.ps1 -------------------------------------------------------------------------------- /201-vm-windows-comprehensive-with-managed-disks/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/201-vm-windows-comprehensive-with-managed-disks/azuredeploy.json -------------------------------------------------------------------------------- /201-vm-windows-comprehensive-with-managed-disks/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/201-vm-windows-comprehensive-with-managed-disks/azuredeploy.parameters.json -------------------------------------------------------------------------------- /201-vm-windows-comprehensive-with-managed-disks/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/201-vm-windows-comprehensive-with-managed-disks/metadata.json -------------------------------------------------------------------------------- /201-vm-windows-comprehensive-with-managed-disks/storageAccount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/201-vm-windows-comprehensive-with-managed-disks/storageAccount.json -------------------------------------------------------------------------------- /201-vm-windows-comprehensive-with-managed-disks/windowsFeature.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/201-vm-windows-comprehensive-with-managed-disks/windowsFeature.zip -------------------------------------------------------------------------------- /201-vm-windows-comprehensive/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/201-vm-windows-comprehensive/README.md -------------------------------------------------------------------------------- /201-vm-windows-comprehensive/ValidateWindowsFeature.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/201-vm-windows-comprehensive/ValidateWindowsFeature.ps1 -------------------------------------------------------------------------------- /201-vm-windows-comprehensive/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/201-vm-windows-comprehensive/azuredeploy.json -------------------------------------------------------------------------------- /201-vm-windows-comprehensive/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/201-vm-windows-comprehensive/azuredeploy.parameters.json -------------------------------------------------------------------------------- /201-vm-windows-comprehensive/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/201-vm-windows-comprehensive/metadata.json -------------------------------------------------------------------------------- /201-vm-windows-comprehensive/storageAccount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/201-vm-windows-comprehensive/storageAccount.json -------------------------------------------------------------------------------- /201-vm-windows-comprehensive/windowsFeature.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/201-vm-windows-comprehensive/windowsFeature.zip -------------------------------------------------------------------------------- /201-vm-windows-pushcertificate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/201-vm-windows-pushcertificate/README.md -------------------------------------------------------------------------------- /201-vm-windows-pushcertificate/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/201-vm-windows-pushcertificate/azuredeploy.json -------------------------------------------------------------------------------- /201-vm-windows-pushcertificate/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/201-vm-windows-pushcertificate/azuredeploy.parameters.json -------------------------------------------------------------------------------- /201-vm-windows-pushcertificate/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/201-vm-windows-pushcertificate/metadata.json -------------------------------------------------------------------------------- /201-vmss-linux-existing-vnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/201-vmss-linux-existing-vnet/README.md -------------------------------------------------------------------------------- /201-vmss-linux-existing-vnet/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/201-vmss-linux-existing-vnet/azuredeploy.json -------------------------------------------------------------------------------- /201-vmss-linux-existing-vnet/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/201-vmss-linux-existing-vnet/azuredeploy.parameters.json -------------------------------------------------------------------------------- /201-vmss-linux-existing-vnet/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/201-vmss-linux-existing-vnet/metadata.json -------------------------------------------------------------------------------- /201-vmss-linux-extension/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/201-vmss-linux-extension/README.md -------------------------------------------------------------------------------- /201-vmss-linux-extension/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/201-vmss-linux-extension/azuredeploy.json -------------------------------------------------------------------------------- /201-vmss-linux-extension/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/201-vmss-linux-extension/azuredeploy.parameters.json -------------------------------------------------------------------------------- /201-vmss-linux-extension/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/201-vmss-linux-extension/metadata.json -------------------------------------------------------------------------------- /201-vmss-linux-vm-largescale/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/201-vmss-linux-vm-largescale/README.md -------------------------------------------------------------------------------- /201-vmss-linux-vm-largescale/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/201-vmss-linux-vm-largescale/azuredeploy.json -------------------------------------------------------------------------------- /201-vmss-linux-vm-largescale/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/201-vmss-linux-vm-largescale/azuredeploy.parameters.json -------------------------------------------------------------------------------- /201-vmss-linux-vm-largescale/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/201-vmss-linux-vm-largescale/metadata.json -------------------------------------------------------------------------------- /201-vmss-scalein-scaleout-existing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/201-vmss-scalein-scaleout-existing/README.md -------------------------------------------------------------------------------- /201-vmss-scalein-scaleout-existing/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/201-vmss-scalein-scaleout-existing/azuredeploy.json -------------------------------------------------------------------------------- /201-vmss-scalein-scaleout-existing/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/201-vmss-scalein-scaleout-existing/azuredeploy.parameters.json -------------------------------------------------------------------------------- /201-vmss-scalein-scaleout-existing/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/201-vmss-scalein-scaleout-existing/metadata.json -------------------------------------------------------------------------------- /201-vmss-windows-customimage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/201-vmss-windows-customimage/README.md -------------------------------------------------------------------------------- /201-vmss-windows-customimage/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/201-vmss-windows-customimage/azuredeploy.json -------------------------------------------------------------------------------- /201-vmss-windows-customimage/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/201-vmss-windows-customimage/azuredeploy.parameters.json -------------------------------------------------------------------------------- /201-vmss-windows-customimage/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/201-vmss-windows-customimage/metadata.json -------------------------------------------------------------------------------- /201-vmss-windows-extension/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/201-vmss-windows-extension/README.md -------------------------------------------------------------------------------- /201-vmss-windows-extension/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/201-vmss-windows-extension/azuredeploy.json -------------------------------------------------------------------------------- /201-vmss-windows-extension/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/201-vmss-windows-extension/azuredeploy.parameters.json -------------------------------------------------------------------------------- /201-vmss-windows-extension/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/201-vmss-windows-extension/metadata.json -------------------------------------------------------------------------------- /201-vmss-windows-extension/scripts/helloWorld.ps1: -------------------------------------------------------------------------------- 1 | Write-Host "Hello World!" -------------------------------------------------------------------------------- /201-vmss-windows-vm-largescale-with-managed-disk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/201-vmss-windows-vm-largescale-with-managed-disk/README.md -------------------------------------------------------------------------------- /201-vmss-windows-vm-largescale-with-managed-disk/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/201-vmss-windows-vm-largescale-with-managed-disk/azuredeploy.json -------------------------------------------------------------------------------- /201-vmss-windows-vm-largescale-with-managed-disk/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/201-vmss-windows-vm-largescale-with-managed-disk/metadata.json -------------------------------------------------------------------------------- /201-vmss-windows-vm-largescale/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/201-vmss-windows-vm-largescale/README.md -------------------------------------------------------------------------------- /201-vmss-windows-vm-largescale/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/201-vmss-windows-vm-largescale/azuredeploy.json -------------------------------------------------------------------------------- /201-vmss-windows-vm-largescale/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/201-vmss-windows-vm-largescale/azuredeploy.parameters.json -------------------------------------------------------------------------------- /201-vmss-windows-vm-largescale/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/201-vmss-windows-vm-largescale/metadata.json -------------------------------------------------------------------------------- /201-webapp-and-serviceplan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/201-webapp-and-serviceplan/README.md -------------------------------------------------------------------------------- /201-webapp-and-serviceplan/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/201-webapp-and-serviceplan/azuredeploy.json -------------------------------------------------------------------------------- /201-webapp-and-serviceplan/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/201-webapp-and-serviceplan/azuredeploy.parameters.json -------------------------------------------------------------------------------- /201-webapp-and-serviceplan/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/201-webapp-and-serviceplan/metadata.json -------------------------------------------------------------------------------- /201-webapp-gdpr-compliant/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/201-webapp-gdpr-compliant/azuredeploy.json -------------------------------------------------------------------------------- /201-webapp-gdpr-compliant/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/201-webapp-gdpr-compliant/azuredeploy.parameters.json -------------------------------------------------------------------------------- /201-webapp-gdpr-compliant/images/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/201-webapp-gdpr-compliant/images/architecture.png -------------------------------------------------------------------------------- /201-webapp-gdpr-compliant/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/201-webapp-gdpr-compliant/metadata.json -------------------------------------------------------------------------------- /201-webapp-gdpr-compliant/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/201-webapp-gdpr-compliant/readme.md -------------------------------------------------------------------------------- /301-availability-set-elastic-storage-ecs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/301-availability-set-elastic-storage-ecs/README.md -------------------------------------------------------------------------------- /301-availability-set-elastic-storage-ecs/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/301-availability-set-elastic-storage-ecs/azuredeploy.json -------------------------------------------------------------------------------- /301-availability-set-elastic-storage-ecs/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/301-availability-set-elastic-storage-ecs/azuredeploy.parameters.json -------------------------------------------------------------------------------- /301-availability-set-elastic-storage-ecs/deploy-azureresourcegroup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/301-availability-set-elastic-storage-ecs/deploy-azureresourcegroup.ps1 -------------------------------------------------------------------------------- /301-availability-set-elastic-storage-ecs/images/ansible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/301-availability-set-elastic-storage-ecs/images/ansible.png -------------------------------------------------------------------------------- /301-availability-set-elastic-storage-ecs/images/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/301-availability-set-elastic-storage-ecs/images/dashboard.png -------------------------------------------------------------------------------- /301-availability-set-elastic-storage-ecs/images/deploytoasdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/301-availability-set-elastic-storage-ecs/images/deploytoasdk.png -------------------------------------------------------------------------------- /301-availability-set-elastic-storage-ecs/images/deploytoasdkadmin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/301-availability-set-elastic-storage-ecs/images/deploytoasdkadmin.png -------------------------------------------------------------------------------- /301-availability-set-elastic-storage-ecs/images/log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/301-availability-set-elastic-storage-ecs/images/log.png -------------------------------------------------------------------------------- /301-availability-set-elastic-storage-ecs/images/new_rg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/301-availability-set-elastic-storage-ecs/images/new_rg.png -------------------------------------------------------------------------------- /301-availability-set-elastic-storage-ecs/images/rg_done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/301-availability-set-elastic-storage-ecs/images/rg_done.png -------------------------------------------------------------------------------- /301-availability-set-elastic-storage-ecs/images/rg_parameter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/301-availability-set-elastic-storage-ecs/images/rg_parameter.png -------------------------------------------------------------------------------- /301-availability-set-elastic-storage-ecs/images/template_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/301-availability-set-elastic-storage-ecs/images/template_edit.png -------------------------------------------------------------------------------- /301-availability-set-elastic-storage-ecs/images/template_load.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/301-availability-set-elastic-storage-ecs/images/template_load.png -------------------------------------------------------------------------------- /301-availability-set-elastic-storage-ecs/images/template_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/301-availability-set-elastic-storage-ecs/images/template_new.png -------------------------------------------------------------------------------- /301-availability-set-elastic-storage-ecs/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/301-availability-set-elastic-storage-ecs/metadata.json -------------------------------------------------------------------------------- /301-availability-set-elastic-storage-ecs/scripts/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/301-availability-set-elastic-storage-ecs/scripts/deploy.yml -------------------------------------------------------------------------------- /301-availability-set-elastic-storage-ecs/scripts/ecs-installer.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/301-availability-set-elastic-storage-ecs/scripts/ecs-installer.service -------------------------------------------------------------------------------- /301-availability-set-elastic-storage-ecs/scripts/ecs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/301-availability-set-elastic-storage-ecs/scripts/ecs.sh -------------------------------------------------------------------------------- /301-availability-set-elastic-storage-ecs/scripts/ecs_pre.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/301-availability-set-elastic-storage-ecs/scripts/ecs_pre.sh -------------------------------------------------------------------------------- /301-storage-spaces-direct/.ci_skip: -------------------------------------------------------------------------------- 1 | Skip CI due to existing resource requirements 2 | 3 | -------------------------------------------------------------------------------- /301-storage-spaces-direct/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/301-storage-spaces-direct/README.md -------------------------------------------------------------------------------- /301-storage-spaces-direct/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/301-storage-spaces-direct/azuredeploy.json -------------------------------------------------------------------------------- /301-storage-spaces-direct/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/301-storage-spaces-direct/azuredeploy.parameters.json -------------------------------------------------------------------------------- /301-storage-spaces-direct/dsc/config-s2d.ps1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/301-storage-spaces-direct/dsc/config-s2d.ps1.zip -------------------------------------------------------------------------------- /301-storage-spaces-direct/dsc/prep-s2d.ps1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/301-storage-spaces-direct/dsc/prep-s2d.ps1.zip -------------------------------------------------------------------------------- /301-storage-spaces-direct/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/301-storage-spaces-direct/metadata.json -------------------------------------------------------------------------------- /301-storage-spaces-direct/nestedtemplates/deploy-s2d-cluster.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/301-storage-spaces-direct/nestedtemplates/deploy-s2d-cluster.json -------------------------------------------------------------------------------- /301-storage-spaces-direct/nestedtemplates/diskSelection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/301-storage-spaces-direct/nestedtemplates/diskSelection.json -------------------------------------------------------------------------------- /301-storage-spaces-direct/nestedtemplates/newVM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/301-storage-spaces-direct/nestedtemplates/newVM.json -------------------------------------------------------------------------------- /ApplyCustomScriptExtensionToWindowsVm+managed/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ApplyCustomScriptExtensionToWindowsVm+managed/README.md -------------------------------------------------------------------------------- /ApplyCustomScriptExtensionToWindowsVm+managed/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ApplyCustomScriptExtensionToWindowsVm+managed/azuredeploy.json -------------------------------------------------------------------------------- /ApplyCustomScriptExtensionToWindowsVm+managed/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ApplyCustomScriptExtensionToWindowsVm+managed/azuredeploy.parameters.json -------------------------------------------------------------------------------- /ApplyCustomScriptExtensionToWindowsVm+managed/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ApplyCustomScriptExtensionToWindowsVm+managed/metadata.json -------------------------------------------------------------------------------- /AzureBackupServer/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/AzureBackupServer/.DS_Store -------------------------------------------------------------------------------- /AzureBackupServer/Artifacts/CSDownloadMabs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/AzureBackupServer/Artifacts/CSDownloadMabs.ps1 -------------------------------------------------------------------------------- /AzureBackupServer/Artifacts/MabsWorkload.ps1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/AzureBackupServer/Artifacts/MabsWorkload.ps1.zip -------------------------------------------------------------------------------- /AzureBackupServer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/AzureBackupServer/README.md -------------------------------------------------------------------------------- /AzureBackupServer/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/AzureBackupServer/azuredeploy.json -------------------------------------------------------------------------------- /AzureBackupServer/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/AzureBackupServer/azuredeploy.parameters.json -------------------------------------------------------------------------------- /AzureBackupServer/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/AzureBackupServer/metadata.json -------------------------------------------------------------------------------- /Bicep/101-availabilityset-multiplevm-linux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/Bicep/101-availabilityset-multiplevm-linux/README.md -------------------------------------------------------------------------------- /Bicep/101-availabilityset-multiplevm-linux/azuredeploy.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/Bicep/101-availabilityset-multiplevm-linux/azuredeploy.bicep -------------------------------------------------------------------------------- /Bicep/101-availabilityset-multiplevm-linux/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/Bicep/101-availabilityset-multiplevm-linux/azuredeploy.parameters.json -------------------------------------------------------------------------------- /Bicep/101-simple-linux-vm-custom-managed-disk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/Bicep/101-simple-linux-vm-custom-managed-disk/README.md -------------------------------------------------------------------------------- /Bicep/101-simple-linux-vm-custom-managed-disk/azuredeploy.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/Bicep/101-simple-linux-vm-custom-managed-disk/azuredeploy.bicep -------------------------------------------------------------------------------- /Bicep/101-simple-linux-vm-custom-managed-disk/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/Bicep/101-simple-linux-vm-custom-managed-disk/azuredeploy.parameters.json -------------------------------------------------------------------------------- /Bicep/101-simple-linux-vm-custom-managed-disk/deploy_image.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/Bicep/101-simple-linux-vm-custom-managed-disk/deploy_image.ps1 -------------------------------------------------------------------------------- /Bicep/101-simple-linux-vm-custom-managed-disk/images/deploytoasdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/Bicep/101-simple-linux-vm-custom-managed-disk/images/deploytoasdk.png -------------------------------------------------------------------------------- /Bicep/101-simple-linux-vm-custom-managed-disk/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/Bicep/101-simple-linux-vm-custom-managed-disk/images/image.png -------------------------------------------------------------------------------- /Bicep/101-simple-linux-vm-custom-managed-disk/images/rg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/Bicep/101-simple-linux-vm-custom-managed-disk/images/rg.png -------------------------------------------------------------------------------- /Bicep/101-simple-linux-vm-custom-managed-disk/images/template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/Bicep/101-simple-linux-vm-custom-managed-disk/images/template.png -------------------------------------------------------------------------------- /Bicep/101-vmss-windows-vm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/Bicep/101-vmss-windows-vm/README.md -------------------------------------------------------------------------------- /Bicep/101-vmss-windows-vm/azuredeploy.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/Bicep/101-vmss-windows-vm/azuredeploy.bicep -------------------------------------------------------------------------------- /Bicep/101-vmss-windows-vm/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/Bicep/101-vmss-windows-vm/azuredeploy.parameters.json -------------------------------------------------------------------------------- /Bicep/201-vmss-linux-extension/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/Bicep/201-vmss-linux-extension/README.md -------------------------------------------------------------------------------- /Bicep/201-vmss-linux-extension/azuredeploy.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/Bicep/201-vmss-linux-extension/azuredeploy.bicep -------------------------------------------------------------------------------- /Bicep/201-vmss-linux-extension/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/Bicep/201-vmss-linux-extension/azuredeploy.parameters.json -------------------------------------------------------------------------------- /Bicep/201-vmss-windows-extension/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/Bicep/201-vmss-windows-extension/README.md -------------------------------------------------------------------------------- /Bicep/201-vmss-windows-extension/azuredeploy.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/Bicep/201-vmss-windows-extension/azuredeploy.bicep -------------------------------------------------------------------------------- /Bicep/201-vmss-windows-extension/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/Bicep/201-vmss-windows-extension/azuredeploy.parameters.json -------------------------------------------------------------------------------- /Bicep/201-vmss-windows-extension/scripts/helloWorld.ps1: -------------------------------------------------------------------------------- 1 | Write-Host "Hello World!" -------------------------------------------------------------------------------- /Bicep/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/Bicep/README.md -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/License.txt -------------------------------------------------------------------------------- /Linux-VmssManaged/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/Linux-VmssManaged/README.md -------------------------------------------------------------------------------- /Linux-VmssManaged/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/Linux-VmssManaged/azuredeploy.json -------------------------------------------------------------------------------- /Linux-VmssManaged/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/Linux-VmssManaged/azuredeploy.parameters.json -------------------------------------------------------------------------------- /Linux-VmssManaged/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/Linux-VmssManaged/metadata.json -------------------------------------------------------------------------------- /MicrosoftMonitoringAgent-ext-win/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/MicrosoftMonitoringAgent-ext-win/README.md -------------------------------------------------------------------------------- /MicrosoftMonitoringAgent-ext-win/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/MicrosoftMonitoringAgent-ext-win/azuredeploy.json -------------------------------------------------------------------------------- /MicrosoftMonitoringAgent-ext-win/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/MicrosoftMonitoringAgent-ext-win/azuredeploy.parameters.json -------------------------------------------------------------------------------- /MicrosoftMonitoringAgent-ext-win/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/MicrosoftMonitoringAgent-ext-win/metadata.json -------------------------------------------------------------------------------- /MultiVm-Linux-AvailabilitySet-managed/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/MultiVm-Linux-AvailabilitySet-managed/README.md -------------------------------------------------------------------------------- /MultiVm-Linux-AvailabilitySet-managed/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/MultiVm-Linux-AvailabilitySet-managed/azuredeploy.json -------------------------------------------------------------------------------- /MultiVm-Linux-AvailabilitySet-managed/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/MultiVm-Linux-AvailabilitySet-managed/azuredeploy.parameters.json -------------------------------------------------------------------------------- /MultiVm-Linux-AvailabilitySet-managed/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/MultiVm-Linux-AvailabilitySet-managed/metadata.json -------------------------------------------------------------------------------- /MultiVm-Windows-AvailabilitySet-managed/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/MultiVm-Windows-AvailabilitySet-managed/README.md -------------------------------------------------------------------------------- /MultiVm-Windows-AvailabilitySet-managed/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/MultiVm-Windows-AvailabilitySet-managed/azuredeploy.json -------------------------------------------------------------------------------- /MultiVm-Windows-AvailabilitySet-managed/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/MultiVm-Windows-AvailabilitySet-managed/azuredeploy.parameters.json -------------------------------------------------------------------------------- /MultiVm-Windows-AvailabilitySet-managed/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/MultiVm-Windows-AvailabilitySet-managed/metadata.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/SECURITY.md -------------------------------------------------------------------------------- /Sample README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/Sample README.md -------------------------------------------------------------------------------- /ScaleInOutExistingVmss-managed/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ScaleInOutExistingVmss-managed/.DS_Store -------------------------------------------------------------------------------- /ScaleInOutExistingVmss-managed/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ScaleInOutExistingVmss-managed/README.md -------------------------------------------------------------------------------- /ScaleInOutExistingVmss-managed/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ScaleInOutExistingVmss-managed/azuredeploy.json -------------------------------------------------------------------------------- /ScaleInOutExistingVmss-managed/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ScaleInOutExistingVmss-managed/azuredeploy.parameters.json -------------------------------------------------------------------------------- /ScaleInOutExistingVmss-managed/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ScaleInOutExistingVmss-managed/metadata.json -------------------------------------------------------------------------------- /active-directory-new-domain-ha-2-dc/.gitignore: -------------------------------------------------------------------------------- 1 | azuredeploy.parameters.local.json -------------------------------------------------------------------------------- /active-directory-new-domain-ha-2-dc/DSC/ConfigureADBDC.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/active-directory-new-domain-ha-2-dc/DSC/ConfigureADBDC.ps1 -------------------------------------------------------------------------------- /active-directory-new-domain-ha-2-dc/DSC/ConfigureADBDC.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/active-directory-new-domain-ha-2-dc/DSC/ConfigureADBDC.zip -------------------------------------------------------------------------------- /active-directory-new-domain-ha-2-dc/DSC/CreateADPDC.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/active-directory-new-domain-ha-2-dc/DSC/CreateADPDC.ps1 -------------------------------------------------------------------------------- /active-directory-new-domain-ha-2-dc/DSC/CreateADPDC.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/active-directory-new-domain-ha-2-dc/DSC/CreateADPDC.zip -------------------------------------------------------------------------------- /active-directory-new-domain-ha-2-dc/DSC/PrepareADBDC.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/active-directory-new-domain-ha-2-dc/DSC/PrepareADBDC.ps1 -------------------------------------------------------------------------------- /active-directory-new-domain-ha-2-dc/DSC/PrepareADBDC.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/active-directory-new-domain-ha-2-dc/DSC/PrepareADBDC.zip -------------------------------------------------------------------------------- /active-directory-new-domain-ha-2-dc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/active-directory-new-domain-ha-2-dc/README.md -------------------------------------------------------------------------------- /active-directory-new-domain-ha-2-dc/azuredeploy-unmanagedDisk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/active-directory-new-domain-ha-2-dc/azuredeploy-unmanagedDisk.json -------------------------------------------------------------------------------- /active-directory-new-domain-ha-2-dc/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/active-directory-new-domain-ha-2-dc/azuredeploy.json -------------------------------------------------------------------------------- /active-directory-new-domain-ha-2-dc/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/active-directory-new-domain-ha-2-dc/azuredeploy.parameters.json -------------------------------------------------------------------------------- /active-directory-new-domain-ha-2-dc/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/active-directory-new-domain-ha-2-dc/metadata.json -------------------------------------------------------------------------------- /active-directory-new-domain-ha-2-dc/nestedtemplates/configureADBDC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/active-directory-new-domain-ha-2-dc/nestedtemplates/configureADBDC.json -------------------------------------------------------------------------------- /active-directory-new-domain-ha-2-dc/nestedtemplates/nic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/active-directory-new-domain-ha-2-dc/nestedtemplates/nic.json -------------------------------------------------------------------------------- /active-directory-new-domain-ha-2-dc/nestedtemplates/vnet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/active-directory-new-domain-ha-2-dc/nestedtemplates/vnet.json -------------------------------------------------------------------------------- /active-directory-new-domain/DSC/CreateADPDC.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/active-directory-new-domain/DSC/CreateADPDC.ps1 -------------------------------------------------------------------------------- /active-directory-new-domain/DSC/CreateADPDC.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/active-directory-new-domain/DSC/CreateADPDC.zip -------------------------------------------------------------------------------- /active-directory-new-domain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/active-directory-new-domain/README.md -------------------------------------------------------------------------------- /active-directory-new-domain/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/active-directory-new-domain/azuredeploy.json -------------------------------------------------------------------------------- /active-directory-new-domain/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/active-directory-new-domain/azuredeploy.parameters.json -------------------------------------------------------------------------------- /active-directory-new-domain/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/active-directory-new-domain/metadata.json -------------------------------------------------------------------------------- /active-directory-new-domain/nestedtemplates/vnet-with-dns-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/active-directory-new-domain/nestedtemplates/vnet-with-dns-server.json -------------------------------------------------------------------------------- /active-directory-new-domain/nestedtemplates/vnet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/active-directory-new-domain/nestedtemplates/vnet.json -------------------------------------------------------------------------------- /ad-join-domain-ext-win/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ad-join-domain-ext-win/README.md -------------------------------------------------------------------------------- /ad-join-domain-ext-win/azuredeploy-unmanagedDisk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ad-join-domain-ext-win/azuredeploy-unmanagedDisk.json -------------------------------------------------------------------------------- /ad-join-domain-ext-win/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ad-join-domain-ext-win/azuredeploy.json -------------------------------------------------------------------------------- /ad-join-domain-ext-win/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ad-join-domain-ext-win/azuredeploy.parameters.json -------------------------------------------------------------------------------- /ad-join-domain-ext-win/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ad-join-domain-ext-win/metadata.json -------------------------------------------------------------------------------- /ad-non-ha/CreateADPDC.ps1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ad-non-ha/CreateADPDC.ps1.zip -------------------------------------------------------------------------------- /ad-non-ha/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ad-non-ha/Readme.md -------------------------------------------------------------------------------- /ad-non-ha/adVmTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ad-non-ha/adVmTemplate.json -------------------------------------------------------------------------------- /ad-non-ha/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ad-non-ha/azuredeploy.json -------------------------------------------------------------------------------- /ad-non-ha/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ad-non-ha/azuredeploy.parameters.json -------------------------------------------------------------------------------- /ad-non-ha/deployPrimaryAD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ad-non-ha/deployPrimaryAD.json -------------------------------------------------------------------------------- /ad-non-ha/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ad-non-ha/metadata.json -------------------------------------------------------------------------------- /ad-non-ha/nic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ad-non-ha/nic.json -------------------------------------------------------------------------------- /ad-non-ha/vnet-with-dns-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ad-non-ha/vnet-with-dns-server.json -------------------------------------------------------------------------------- /anti-malware-ext-win/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/anti-malware-ext-win/README.md -------------------------------------------------------------------------------- /anti-malware-ext-win/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/anti-malware-ext-win/azuredeploy.json -------------------------------------------------------------------------------- /anti-malware-ext-win/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/anti-malware-ext-win/azuredeploy.parameters.json -------------------------------------------------------------------------------- /anti-malware-ext-win/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/anti-malware-ext-win/metadata.json -------------------------------------------------------------------------------- /appservice-fileserver-sqlserver-ha/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/appservice-fileserver-sqlserver-ha/README.md -------------------------------------------------------------------------------- /appservice-fileserver-sqlserver-ha/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/appservice-fileserver-sqlserver-ha/azuredeploy.json -------------------------------------------------------------------------------- /appservice-fileserver-sqlserver-ha/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/appservice-fileserver-sqlserver-ha/azuredeploy.parameters.json -------------------------------------------------------------------------------- /appservice-fileserver-sqlserver-ha/dsc/config-s2d.ps1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/appservice-fileserver-sqlserver-ha/dsc/config-s2d.ps1.zip -------------------------------------------------------------------------------- /appservice-fileserver-sqlserver-ha/dsc/config-second-dc.ps1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/appservice-fileserver-sqlserver-ha/dsc/config-second-dc.ps1.zip -------------------------------------------------------------------------------- /appservice-fileserver-sqlserver-ha/dsc/config-sql.ps1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/appservice-fileserver-sqlserver-ha/dsc/config-sql.ps1.zip -------------------------------------------------------------------------------- /appservice-fileserver-sqlserver-ha/dsc/prep-adforest.ps1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/appservice-fileserver-sqlserver-ha/dsc/prep-adforest.ps1.zip -------------------------------------------------------------------------------- /appservice-fileserver-sqlserver-ha/dsc/prep-s2d.ps1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/appservice-fileserver-sqlserver-ha/dsc/prep-s2d.ps1.zip -------------------------------------------------------------------------------- /appservice-fileserver-sqlserver-ha/dsc/prep-sql.ps1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/appservice-fileserver-sqlserver-ha/dsc/prep-sql.ps1.zip -------------------------------------------------------------------------------- /appservice-fileserver-sqlserver-ha/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/appservice-fileserver-sqlserver-ha/metadata.json -------------------------------------------------------------------------------- /appservice-fileserver-sqlserver-ha/nestedtemplates/VirtualNetwork.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/appservice-fileserver-sqlserver-ha/nestedtemplates/VirtualNetwork.json -------------------------------------------------------------------------------- /appservice-fileserver-sqlserver-ha/nestedtemplates/VirtualNetworkDNS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/appservice-fileserver-sqlserver-ha/nestedtemplates/VirtualNetworkDNS.json -------------------------------------------------------------------------------- /appservice-fileserver-sqlserver-ha/nestedtemplates/deploy-ad.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/appservice-fileserver-sqlserver-ha/nestedtemplates/deploy-ad.json -------------------------------------------------------------------------------- /appservice-fileserver-sqlserver-ha/nestedtemplates/deploy-s2d-cluster.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/appservice-fileserver-sqlserver-ha/nestedtemplates/deploy-s2d-cluster.json -------------------------------------------------------------------------------- /appservice-fileserver-sqlserver-ha/nestedtemplates/deploy-sql-cluster.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/appservice-fileserver-sqlserver-ha/nestedtemplates/deploy-sql-cluster.json -------------------------------------------------------------------------------- /appservice-fileserver-sqlserver-ha/nestedtemplates/newVM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/appservice-fileserver-sqlserver-ha/nestedtemplates/newVM.json -------------------------------------------------------------------------------- /appservice-fileserver-standalone/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/appservice-fileserver-standalone/README.md -------------------------------------------------------------------------------- /appservice-fileserver-standalone/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/appservice-fileserver-standalone/azuredeploy.json -------------------------------------------------------------------------------- /appservice-fileserver-standalone/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/appservice-fileserver-standalone/azuredeploy.parameters.json -------------------------------------------------------------------------------- /appservice-fileserver-standalone/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/appservice-fileserver-standalone/metadata.json -------------------------------------------------------------------------------- /appservice-fileserver-standalone/scripts/fileserver.cr.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/appservice-fileserver-standalone/scripts/fileserver.cr.zip -------------------------------------------------------------------------------- /bootstorm-vm-boot-time/VMBootAll.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/bootstorm-vm-boot-time/VMBootAll.ps1 -------------------------------------------------------------------------------- /bootstorm-vm-boot-time/VMBootAll.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/bootstorm-vm-boot-time/VMBootAll.zip -------------------------------------------------------------------------------- /bootstorm-vm-boot-time/VMBootAllScript.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/bootstorm-vm-boot-time/VMBootAllScript.ps1 -------------------------------------------------------------------------------- /bootstorm-vm-boot-time/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/bootstorm-vm-boot-time/azuredeploy.json -------------------------------------------------------------------------------- /bootstorm-vm-boot-time/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/bootstorm-vm-boot-time/azuredeploy.parameters.json -------------------------------------------------------------------------------- /bootstorm-vm-boot-time/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/bootstorm-vm-boot-time/metadata.json -------------------------------------------------------------------------------- /bootstorm-vm-boot-time/readme.azure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/bootstorm-vm-boot-time/readme.azure.md -------------------------------------------------------------------------------- /bootstorm-vm-boot-time/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/bootstorm-vm-boot-time/readme.md -------------------------------------------------------------------------------- /docker-swarm-ubuntu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/docker-swarm-ubuntu/README.md -------------------------------------------------------------------------------- /docker-swarm-ubuntu/azuredeploy-sshkeys.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/docker-swarm-ubuntu/azuredeploy-sshkeys.parameters.json -------------------------------------------------------------------------------- /docker-swarm-ubuntu/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/docker-swarm-ubuntu/azuredeploy.json -------------------------------------------------------------------------------- /docker-swarm-ubuntu/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/docker-swarm-ubuntu/azuredeploy.parameters.json -------------------------------------------------------------------------------- /docker-swarm-ubuntu/deploySwarm.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/docker-swarm-ubuntu/deploySwarm.ps1 -------------------------------------------------------------------------------- /docker-swarm-ubuntu/images/dockercomposescale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/docker-swarm-ubuntu/images/dockercomposescale.png -------------------------------------------------------------------------------- /docker-swarm-ubuntu/images/dockerinfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/docker-swarm-ubuntu/images/dockerinfo.png -------------------------------------------------------------------------------- /docker-swarm-ubuntu/images/dockerps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/docker-swarm-ubuntu/images/dockerps.png -------------------------------------------------------------------------------- /docker-swarm-ubuntu/images/portal-publicipaddresses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/docker-swarm-ubuntu/images/portal-publicipaddresses.png -------------------------------------------------------------------------------- /docker-swarm-ubuntu/images/portal-resourcegroups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/docker-swarm-ubuntu/images/portal-resourcegroups.png -------------------------------------------------------------------------------- /docker-swarm-ubuntu/images/swarm-framework.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/docker-swarm-ubuntu/images/swarm-framework.png -------------------------------------------------------------------------------- /docker-swarm-ubuntu/images/swarm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/docker-swarm-ubuntu/images/swarm.png -------------------------------------------------------------------------------- /docker-swarm-ubuntu/images/swarmbrowser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/docker-swarm-ubuntu/images/swarmbrowser.png -------------------------------------------------------------------------------- /docker-swarm-ubuntu/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/docker-swarm-ubuntu/metadata.json -------------------------------------------------------------------------------- /docker-swarm-ubuntu/parts/configure-swarm-azurestack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/docker-swarm-ubuntu/parts/configure-swarm-azurestack.sh -------------------------------------------------------------------------------- /ethereum-consortium-blockchain-poa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ethereum-consortium-blockchain-poa/README.md -------------------------------------------------------------------------------- /ethereum-consortium-blockchain-poa/common/mainTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ethereum-consortium-blockchain-poa/common/mainTemplate.json -------------------------------------------------------------------------------- /ethereum-consortium-blockchain-poa/common/nested/createKeyVault.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ethereum-consortium-blockchain-poa/common/nested/createKeyVault.json -------------------------------------------------------------------------------- /ethereum-consortium-blockchain-poa/common/nested/network-resources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ethereum-consortium-blockchain-poa/common/nested/network-resources.json -------------------------------------------------------------------------------- /ethereum-consortium-blockchain-poa/common/nested/storage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ethereum-consortium-blockchain-poa/common/nested/storage.json -------------------------------------------------------------------------------- /ethereum-consortium-blockchain-poa/common/nested/vmss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ethereum-consortium-blockchain-poa/common/nested/vmss.json -------------------------------------------------------------------------------- /ethereum-consortium-blockchain-poa/common/scripts/configure-poa.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ethereum-consortium-blockchain-poa/common/scripts/configure-poa.sh -------------------------------------------------------------------------------- /ethereum-consortium-blockchain-poa/common/scripts/configure-validator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ethereum-consortium-blockchain-poa/common/scripts/configure-validator.sh -------------------------------------------------------------------------------- /ethereum-consortium-blockchain-poa/common/scripts/poa-utility.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ethereum-consortium-blockchain-poa/common/scripts/poa-utility.sh -------------------------------------------------------------------------------- /ethereum-consortium-blockchain-poa/common/scripts/run-validator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ethereum-consortium-blockchain-poa/common/scripts/run-validator.sh -------------------------------------------------------------------------------- /ethereum-consortium-blockchain/genesis-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ethereum-consortium-blockchain/genesis-template.json -------------------------------------------------------------------------------- /ethereum-consortium-blockchain/marketplace/Connection/mainTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ethereum-consortium-blockchain/marketplace/Connection/mainTemplate.json -------------------------------------------------------------------------------- /ethereum-consortium-blockchain/marketplace/JoiningMember/mainTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ethereum-consortium-blockchain/marketplace/JoiningMember/mainTemplate.json -------------------------------------------------------------------------------- /ethereum-consortium-blockchain/nested/joiningNVAExtension.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ethereum-consortium-blockchain/nested/joiningNVAExtension.json -------------------------------------------------------------------------------- /ethereum-consortium-blockchain/nested/joiningVmExtension.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ethereum-consortium-blockchain/nested/joiningVmExtension.json -------------------------------------------------------------------------------- /ethereum-consortium-blockchain/nested/joiningVmExtension.json.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ethereum-consortium-blockchain/nested/joiningVmExtension.json.bak -------------------------------------------------------------------------------- /ethereum-consortium-blockchain/nested/loadBalancer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ethereum-consortium-blockchain/nested/loadBalancer.json -------------------------------------------------------------------------------- /ethereum-consortium-blockchain/nested/mnVMAuth-password.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ethereum-consortium-blockchain/nested/mnVMAuth-password.json -------------------------------------------------------------------------------- /ethereum-consortium-blockchain/nested/mnVMAuth-sshPublicKey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ethereum-consortium-blockchain/nested/mnVMAuth-sshPublicKey.json -------------------------------------------------------------------------------- /ethereum-consortium-blockchain/nested/networkVirtualAppliance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ethereum-consortium-blockchain/nested/networkVirtualAppliance.json -------------------------------------------------------------------------------- /ethereum-consortium-blockchain/nested/txVMAuth-password.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ethereum-consortium-blockchain/nested/txVMAuth-password.json -------------------------------------------------------------------------------- /ethereum-consortium-blockchain/nested/txVMAuth-sshPublicKey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ethereum-consortium-blockchain/nested/txVMAuth-sshPublicKey.json -------------------------------------------------------------------------------- /ethereum-consortium-blockchain/nested/updateRouteTableExtension.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ethereum-consortium-blockchain/nested/updateRouteTableExtension.json -------------------------------------------------------------------------------- /ethereum-consortium-blockchain/nested/vmExtension.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ethereum-consortium-blockchain/nested/vmExtension.json -------------------------------------------------------------------------------- /ethereum-consortium-blockchain/powershell/BlockchainPackage.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ethereum-consortium-blockchain/powershell/BlockchainPackage.psm1 -------------------------------------------------------------------------------- /ethereum-consortium-blockchain/powershell/ConsortiumBridge.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ethereum-consortium-blockchain/powershell/ConsortiumBridge.psm1 -------------------------------------------------------------------------------- /ethereum-consortium-blockchain/quickstart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ethereum-consortium-blockchain/quickstart/README.md -------------------------------------------------------------------------------- /ethereum-consortium-blockchain/quickstart/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ethereum-consortium-blockchain/quickstart/azuredeploy.json -------------------------------------------------------------------------------- /ethereum-consortium-blockchain/quickstart/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ethereum-consortium-blockchain/quickstart/azuredeploy.parameters.json -------------------------------------------------------------------------------- /ethereum-consortium-blockchain/quickstart/images/admin-site.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ethereum-consortium-blockchain/quickstart/images/admin-site.png -------------------------------------------------------------------------------- /ethereum-consortium-blockchain/quickstart/images/azure1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ethereum-consortium-blockchain/quickstart/images/azure1.png -------------------------------------------------------------------------------- /ethereum-consortium-blockchain/quickstart/images/azure10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ethereum-consortium-blockchain/quickstart/images/azure10.png -------------------------------------------------------------------------------- /ethereum-consortium-blockchain/quickstart/images/azure11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ethereum-consortium-blockchain/quickstart/images/azure11.png -------------------------------------------------------------------------------- /ethereum-consortium-blockchain/quickstart/images/azure12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ethereum-consortium-blockchain/quickstart/images/azure12.png -------------------------------------------------------------------------------- /ethereum-consortium-blockchain/quickstart/images/azure2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ethereum-consortium-blockchain/quickstart/images/azure2.png -------------------------------------------------------------------------------- /ethereum-consortium-blockchain/quickstart/images/azure3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ethereum-consortium-blockchain/quickstart/images/azure3.png -------------------------------------------------------------------------------- /ethereum-consortium-blockchain/quickstart/images/azure4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ethereum-consortium-blockchain/quickstart/images/azure4.png -------------------------------------------------------------------------------- /ethereum-consortium-blockchain/quickstart/images/azure5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ethereum-consortium-blockchain/quickstart/images/azure5.png -------------------------------------------------------------------------------- /ethereum-consortium-blockchain/quickstart/images/azure6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ethereum-consortium-blockchain/quickstart/images/azure6.png -------------------------------------------------------------------------------- /ethereum-consortium-blockchain/quickstart/images/azure7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ethereum-consortium-blockchain/quickstart/images/azure7.png -------------------------------------------------------------------------------- /ethereum-consortium-blockchain/quickstart/images/azure8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ethereum-consortium-blockchain/quickstart/images/azure8.png -------------------------------------------------------------------------------- /ethereum-consortium-blockchain/quickstart/images/azure9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ethereum-consortium-blockchain/quickstart/images/azure9.png -------------------------------------------------------------------------------- /ethereum-consortium-blockchain/quickstart/images/contracts1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ethereum-consortium-blockchain/quickstart/images/contracts1.png -------------------------------------------------------------------------------- /ethereum-consortium-blockchain/quickstart/images/contracts10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ethereum-consortium-blockchain/quickstart/images/contracts10.png -------------------------------------------------------------------------------- /ethereum-consortium-blockchain/quickstart/images/contracts11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ethereum-consortium-blockchain/quickstart/images/contracts11.png -------------------------------------------------------------------------------- /ethereum-consortium-blockchain/quickstart/images/contracts12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ethereum-consortium-blockchain/quickstart/images/contracts12.png -------------------------------------------------------------------------------- /ethereum-consortium-blockchain/quickstart/images/contracts2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ethereum-consortium-blockchain/quickstart/images/contracts2.png -------------------------------------------------------------------------------- /ethereum-consortium-blockchain/quickstart/images/contracts3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ethereum-consortium-blockchain/quickstart/images/contracts3.png -------------------------------------------------------------------------------- /ethereum-consortium-blockchain/quickstart/images/contracts4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ethereum-consortium-blockchain/quickstart/images/contracts4.png -------------------------------------------------------------------------------- /ethereum-consortium-blockchain/quickstart/images/contracts5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ethereum-consortium-blockchain/quickstart/images/contracts5.png -------------------------------------------------------------------------------- /ethereum-consortium-blockchain/quickstart/images/contracts6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ethereum-consortium-blockchain/quickstart/images/contracts6.png -------------------------------------------------------------------------------- /ethereum-consortium-blockchain/quickstart/images/contracts7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ethereum-consortium-blockchain/quickstart/images/contracts7.png -------------------------------------------------------------------------------- /ethereum-consortium-blockchain/quickstart/images/contracts8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ethereum-consortium-blockchain/quickstart/images/contracts8.png -------------------------------------------------------------------------------- /ethereum-consortium-blockchain/quickstart/images/contracts9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ethereum-consortium-blockchain/quickstart/images/contracts9.png -------------------------------------------------------------------------------- /ethereum-consortium-blockchain/quickstart/images/deployment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ethereum-consortium-blockchain/quickstart/images/deployment.png -------------------------------------------------------------------------------- /ethereum-consortium-blockchain/quickstart/images/eth-network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ethereum-consortium-blockchain/quickstart/images/eth-network.png -------------------------------------------------------------------------------- /ethereum-consortium-blockchain/quickstart/images/output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ethereum-consortium-blockchain/quickstart/images/output.png -------------------------------------------------------------------------------- /ethereum-consortium-blockchain/quickstart/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ethereum-consortium-blockchain/quickstart/metadata.json -------------------------------------------------------------------------------- /ethereum-consortium-blockchain/scripts/ConsortiumBridge.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ethereum-consortium-blockchain/scripts/ConsortiumBridge.sh -------------------------------------------------------------------------------- /ethereum-consortium-blockchain/scripts/CreateVPN.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ethereum-consortium-blockchain/scripts/CreateVPN.ps1 -------------------------------------------------------------------------------- /ethereum-consortium-blockchain/scripts/UpdateRouteTable.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ethereum-consortium-blockchain/scripts/UpdateRouteTable.ps1 -------------------------------------------------------------------------------- /ethereum-consortium-blockchain/scripts/configure-geth-azureuser-joining.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ethereum-consortium-blockchain/scripts/configure-geth-azureuser-joining.sh -------------------------------------------------------------------------------- /ethereum-consortium-blockchain/scripts/configure-geth-azureuser.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ethereum-consortium-blockchain/scripts/configure-geth-azureuser.sh -------------------------------------------------------------------------------- /ethereum-consortium-blockchain/scripts/configure-geth-joining.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ethereum-consortium-blockchain/scripts/configure-geth-joining.sh -------------------------------------------------------------------------------- /ethereum-consortium-blockchain/scripts/configure-geth.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ethereum-consortium-blockchain/scripts/configure-geth.sh -------------------------------------------------------------------------------- /ethereum-consortium-blockchain/scripts/deployment-utility.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ethereum-consortium-blockchain/scripts/deployment-utility.sh -------------------------------------------------------------------------------- /ethereum-consortium-blockchain/scripts/deployment-utility.sh.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ethereum-consortium-blockchain/scripts/deployment-utility.sh.bak -------------------------------------------------------------------------------- /ethereum-consortium-blockchain/scripts/etheradmin/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ethereum-consortium-blockchain/scripts/etheradmin/app.js -------------------------------------------------------------------------------- /ethereum-consortium-blockchain/scripts/etheradmin/etheradmin.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ethereum-consortium-blockchain/scripts/etheradmin/etheradmin.handlebars -------------------------------------------------------------------------------- /ethereum-consortium-blockchain/scripts/etheradmin/etherstartup.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ethereum-consortium-blockchain/scripts/etheradmin/etherstartup.handlebars -------------------------------------------------------------------------------- /ethereum-consortium-blockchain/scripts/etheradmin/main.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ethereum-consortium-blockchain/scripts/etheradmin/main.handlebars -------------------------------------------------------------------------------- /ethereum-consortium-blockchain/scripts/etheradmin/npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ethereum-consortium-blockchain/scripts/etheradmin/npm-shrinkwrap.json -------------------------------------------------------------------------------- /ethereum-consortium-blockchain/scripts/etheradmin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ethereum-consortium-blockchain/scripts/etheradmin/package.json -------------------------------------------------------------------------------- /ethereum-consortium-blockchain/scripts/etheradmin/skeleton.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ethereum-consortium-blockchain/scripts/etheradmin/skeleton.css -------------------------------------------------------------------------------- /ethereum-consortium-blockchain/scripts/sample-contracts.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ethereum-consortium-blockchain/scripts/sample-contracts.sol -------------------------------------------------------------------------------- /ethereum-consortium-blockchain/scripts/start-private-blockchain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ethereum-consortium-blockchain/scripts/start-private-blockchain.sh -------------------------------------------------------------------------------- /ethereum-consortium-blockchain/validation/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ethereum-consortium-blockchain/validation/Readme.md -------------------------------------------------------------------------------- /ethereum-consortium-blockchain/validation/automated-validation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ethereum-consortium-blockchain/validation/automated-validation.ps1 -------------------------------------------------------------------------------- /ethereum-consortium-blockchain/validation/dummyTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ethereum-consortium-blockchain/validation/dummyTemplate.json -------------------------------------------------------------------------------- /ethereum-consortium-blockchain/validation/manual-validation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ethereum-consortium-blockchain/validation/manual-validation.ps1 -------------------------------------------------------------------------------- /ethereum-consortium-blockchain/validation/modules/Utility.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ethereum-consortium-blockchain/validation/modules/Utility.psm1 -------------------------------------------------------------------------------- /ethereum-consortium-blockchain/validation/multinetwork-validation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/ethereum-consortium-blockchain/validation/multinetwork-validation.ps1 -------------------------------------------------------------------------------- /hadoop-cluster/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/hadoop-cluster/README.md -------------------------------------------------------------------------------- /hadoop-cluster/config/core-site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/hadoop-cluster/config/core-site.xml -------------------------------------------------------------------------------- /hadoop-cluster/config/hdfs-site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/hadoop-cluster/config/hdfs-site.xml -------------------------------------------------------------------------------- /hadoop-cluster/config/mapred-site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/hadoop-cluster/config/mapred-site.xml -------------------------------------------------------------------------------- /hadoop-cluster/config/sources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/hadoop-cluster/config/sources.txt -------------------------------------------------------------------------------- /hadoop-cluster/config/yarn-site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/hadoop-cluster/config/yarn-site.xml -------------------------------------------------------------------------------- /hadoop-cluster/hadoop_cluster.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/hadoop-cluster/hadoop_cluster.json -------------------------------------------------------------------------------- /hadoop-cluster/jumpbox_node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/hadoop-cluster/jumpbox_node.json -------------------------------------------------------------------------------- /hadoop-cluster/master_node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/hadoop-cluster/master_node.json -------------------------------------------------------------------------------- /hadoop-cluster/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/hadoop-cluster/parameters.json -------------------------------------------------------------------------------- /hadoop-cluster/scripts/hadoop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/hadoop-cluster/scripts/hadoop.sh -------------------------------------------------------------------------------- /hadoop-cluster/scripts/hadoopSetup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/hadoop-cluster/scripts/hadoopSetup.sh -------------------------------------------------------------------------------- /hadoop-cluster/scripts/jumpboxSetup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/hadoop-cluster/scripts/jumpboxSetup.sh -------------------------------------------------------------------------------- /hadoop-cluster/scripts/template.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/hadoop-cluster/scripts/template.service -------------------------------------------------------------------------------- /hadoop-cluster/worker_node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/hadoop-cluster/worker_node.json -------------------------------------------------------------------------------- /iostorm-vm-iops-latency-managed-disks/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/iostorm-vm-iops-latency-managed-disks/azuredeploy.json -------------------------------------------------------------------------------- /iostorm-vm-iops-latency-managed-disks/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/iostorm-vm-iops-latency-managed-disks/azuredeploy.parameters.json -------------------------------------------------------------------------------- /iostorm-vm-iops-latency/VMIOWorkload.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/iostorm-vm-iops-latency/VMIOWorkload.zip -------------------------------------------------------------------------------- /iostorm-vm-iops-latency/VMIOWorkloadController.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/iostorm-vm-iops-latency/VMIOWorkloadController.zip -------------------------------------------------------------------------------- /iostorm-vm-iops-latency/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/iostorm-vm-iops-latency/azuredeploy.json -------------------------------------------------------------------------------- /iostorm-vm-iops-latency/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/iostorm-vm-iops-latency/azuredeploy.parameters.json -------------------------------------------------------------------------------- /iostorm-vm-iops-latency/diskspd.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/iostorm-vm-iops-latency/diskspd.exe -------------------------------------------------------------------------------- /iostorm-vm-iops-latency/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/iostorm-vm-iops-latency/metadata.json -------------------------------------------------------------------------------- /iostorm-vm-iops-latency/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/iostorm-vm-iops-latency/readme.md -------------------------------------------------------------------------------- /iostormplus-vm-iops-latency/IoStorm/IoStorm.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/iostormplus-vm-iops-latency/IoStorm/IoStorm.psm1 -------------------------------------------------------------------------------- /iostormplus-vm-iops-latency/IoStorm/VMIOController/VMIOController.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/iostormplus-vm-iops-latency/IoStorm/VMIOController/VMIOController.ps1 -------------------------------------------------------------------------------- /iostormplus-vm-iops-latency/IoStorm/VMIOController/VMIOControllerTask.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/iostormplus-vm-iops-latency/IoStorm/VMIOController/VMIOControllerTask.ps1 -------------------------------------------------------------------------------- /iostormplus-vm-iops-latency/IoStorm/VMIOWorkload/VMIOWorkload.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/iostormplus-vm-iops-latency/IoStorm/VMIOWorkload/VMIOWorkload.ps1 -------------------------------------------------------------------------------- /iostormplus-vm-iops-latency/IoStorm/VMIOWorkload/VMIOWorkloadTask.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/iostormplus-vm-iops-latency/IoStorm/VMIOWorkload/VMIOWorkloadTask.ps1 -------------------------------------------------------------------------------- /iostormplus-vm-iops-latency/IoStorm/VMIOWorkload/diskspd.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/iostormplus-vm-iops-latency/IoStorm/VMIOWorkload/diskspd.exe -------------------------------------------------------------------------------- /iostormplus-vm-iops-latency/IoStorm/workloaddeployment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/iostormplus-vm-iops-latency/IoStorm/workloaddeployment.json -------------------------------------------------------------------------------- /iostormplus-vm-iops-latency/PowershellRepo_AzureStack_2.5.0_RC.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/iostormplus-vm-iops-latency/PowershellRepo_AzureStack_2.5.0_RC.zip -------------------------------------------------------------------------------- /iostormplus-vm-iops-latency/SampleOutput/BlobContainer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/iostormplus-vm-iops-latency/SampleOutput/BlobContainer.jpg -------------------------------------------------------------------------------- /iostormplus-vm-iops-latency/SampleOutput/CloudStorageTable.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/iostormplus-vm-iops-latency/SampleOutput/CloudStorageTable.jpg -------------------------------------------------------------------------------- /iostormplus-vm-iops-latency/SampleOutput/IoStormResults_html.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/iostormplus-vm-iops-latency/SampleOutput/IoStormResults_html.jpg -------------------------------------------------------------------------------- /iostormplus-vm-iops-latency/SampleOutput/IoStormStatus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/iostormplus-vm-iops-latency/SampleOutput/IoStormStatus.jpg -------------------------------------------------------------------------------- /iostormplus-vm-iops-latency/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/iostormplus-vm-iops-latency/readme.md -------------------------------------------------------------------------------- /jetstress-2013-exchange-loadtest/CSDownloadISO.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/jetstress-2013-exchange-loadtest/CSDownloadISO.ps1 -------------------------------------------------------------------------------- /jetstress-2013-exchange-loadtest/JetstressWorkload.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/jetstress-2013-exchange-loadtest/JetstressWorkload.zip -------------------------------------------------------------------------------- /jetstress-2013-exchange-loadtest/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/jetstress-2013-exchange-loadtest/azuredeploy.json -------------------------------------------------------------------------------- /jetstress-2013-exchange-loadtest/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/jetstress-2013-exchange-loadtest/azuredeploy.parameters.json -------------------------------------------------------------------------------- /jetstress-2013-exchange-loadtest/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/jetstress-2013-exchange-loadtest/metadata.json -------------------------------------------------------------------------------- /jetstress-2013-exchange-loadtest/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/jetstress-2013-exchange-loadtest/readme.md -------------------------------------------------------------------------------- /mesos-windows-jumpbox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/mesos-windows-jumpbox/README.md -------------------------------------------------------------------------------- /mesos-windows-jumpbox/azuredeploy-sshkeys.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/mesos-windows-jumpbox/azuredeploy-sshkeys.parameters.json -------------------------------------------------------------------------------- /mesos-windows-jumpbox/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/mesos-windows-jumpbox/azuredeploy.json -------------------------------------------------------------------------------- /mesos-windows-jumpbox/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/mesos-windows-jumpbox/azuredeploy.parameters.json -------------------------------------------------------------------------------- /mesos-windows-jumpbox/deployMesos.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/mesos-windows-jumpbox/deployMesos.ps1 -------------------------------------------------------------------------------- /mesos-windows-jumpbox/images/chronos-docker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/mesos-windows-jumpbox/images/chronos-docker.png -------------------------------------------------------------------------------- /mesos-windows-jumpbox/images/chronos-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/mesos-windows-jumpbox/images/chronos-ui.png -------------------------------------------------------------------------------- /mesos-windows-jumpbox/images/chronos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/mesos-windows-jumpbox/images/chronos.png -------------------------------------------------------------------------------- /mesos-windows-jumpbox/images/completed-hello-world.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/mesos-windows-jumpbox/images/completed-hello-world.png -------------------------------------------------------------------------------- /mesos-windows-jumpbox/images/marathon-docker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/mesos-windows-jumpbox/images/marathon-docker.png -------------------------------------------------------------------------------- /mesos-windows-jumpbox/images/marathon-newapp-status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/mesos-windows-jumpbox/images/marathon-newapp-status.png -------------------------------------------------------------------------------- /mesos-windows-jumpbox/images/marathon-newapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/mesos-windows-jumpbox/images/marathon-newapp.png -------------------------------------------------------------------------------- /mesos-windows-jumpbox/images/mesos-agents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/mesos-windows-jumpbox/images/mesos-agents.png -------------------------------------------------------------------------------- /mesos-windows-jumpbox/images/mesos-completed-tasks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/mesos-windows-jumpbox/images/mesos-completed-tasks.png -------------------------------------------------------------------------------- /mesos-windows-jumpbox/images/mesos-frameworks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/mesos-windows-jumpbox/images/mesos-frameworks.png -------------------------------------------------------------------------------- /mesos-windows-jumpbox/images/mesos-webui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/mesos-windows-jumpbox/images/mesos-webui.png -------------------------------------------------------------------------------- /mesos-windows-jumpbox/images/mesos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/mesos-windows-jumpbox/images/mesos.png -------------------------------------------------------------------------------- /mesos-windows-jumpbox/images/portal-publicipaddresses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/mesos-windows-jumpbox/images/portal-publicipaddresses.png -------------------------------------------------------------------------------- /mesos-windows-jumpbox/images/portal-resourcegroups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/mesos-windows-jumpbox/images/portal-resourcegroups.png -------------------------------------------------------------------------------- /mesos-windows-jumpbox/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/mesos-windows-jumpbox/metadata.json -------------------------------------------------------------------------------- /mesos-windows-jumpbox/parts/configure-mesos-azurestack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/mesos-windows-jumpbox/parts/configure-mesos-azurestack.sh -------------------------------------------------------------------------------- /mesos-windows-jumpbox/parts/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/mesos-windows-jumpbox/parts/nginx.conf -------------------------------------------------------------------------------- /mongodb-cluster/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/mongodb-cluster/README.md -------------------------------------------------------------------------------- /mongodb-cluster/config/core-site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/mongodb-cluster/config/core-site.xml -------------------------------------------------------------------------------- /mongodb-cluster/config/hdfs-site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/mongodb-cluster/config/hdfs-site.xml -------------------------------------------------------------------------------- /mongodb-cluster/config/mapred-site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/mongodb-cluster/config/mapred-site.xml -------------------------------------------------------------------------------- /mongodb-cluster/config/sources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/mongodb-cluster/config/sources.txt -------------------------------------------------------------------------------- /mongodb-cluster/config/yarn-site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/mongodb-cluster/config/yarn-site.xml -------------------------------------------------------------------------------- /mongodb-cluster/hadoop_cluster.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/mongodb-cluster/hadoop_cluster.json -------------------------------------------------------------------------------- /mongodb-cluster/jumpbox_node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/mongodb-cluster/jumpbox_node.json -------------------------------------------------------------------------------- /mongodb-cluster/master_node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/mongodb-cluster/master_node.json -------------------------------------------------------------------------------- /mongodb-cluster/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/mongodb-cluster/parameters.json -------------------------------------------------------------------------------- /mongodb-cluster/scripts/hadoop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/mongodb-cluster/scripts/hadoop.sh -------------------------------------------------------------------------------- /mongodb-cluster/scripts/hadoopSetup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/mongodb-cluster/scripts/hadoopSetup.sh -------------------------------------------------------------------------------- /mongodb-cluster/scripts/jumpboxSetup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/mongodb-cluster/scripts/jumpboxSetup.sh -------------------------------------------------------------------------------- /mongodb-cluster/scripts/template.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/mongodb-cluster/scripts/template.service -------------------------------------------------------------------------------- /mongodb-cluster/worker_node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/mongodb-cluster/worker_node.json -------------------------------------------------------------------------------- /mysql-standalone-server-windows/MySql.Setup.CustomScriptExtension.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/mysql-standalone-server-windows/MySql.Setup.CustomScriptExtension.ps1 -------------------------------------------------------------------------------- /mysql-standalone-server-windows/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/mysql-standalone-server-windows/azuredeploy.json -------------------------------------------------------------------------------- /mysql-standalone-server-windows/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/mysql-standalone-server-windows/azuredeploy.parameters.json -------------------------------------------------------------------------------- /mysql-standalone-server-windows/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/mysql-standalone-server-windows/metadata.json -------------------------------------------------------------------------------- /mysql-standalone-server-windows/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/mysql-standalone-server-windows/readme.md -------------------------------------------------------------------------------- /rds-deployment-existing-ad/Configuration.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/rds-deployment-existing-ad/Configuration.zip -------------------------------------------------------------------------------- /rds-deployment-existing-ad/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/rds-deployment-existing-ad/README.md -------------------------------------------------------------------------------- /rds-deployment-existing-ad/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/rds-deployment-existing-ad/azuredeploy.json -------------------------------------------------------------------------------- /rds-deployment-existing-ad/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/rds-deployment-existing-ad/azuredeploy.parameters.json -------------------------------------------------------------------------------- /rds-deployment-existing-ad/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/rds-deployment-existing-ad/metadata.json -------------------------------------------------------------------------------- /rds-deployment-ha-broker/DSC/Configuration.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/rds-deployment-ha-broker/DSC/Configuration.zip -------------------------------------------------------------------------------- /rds-deployment-ha-broker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/rds-deployment-ha-broker/README.md -------------------------------------------------------------------------------- /rds-deployment-ha-broker/Scripts/RdcbHaPostConfig.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/rds-deployment-ha-broker/Scripts/RdcbHaPostConfig.ps1 -------------------------------------------------------------------------------- /rds-deployment-ha-broker/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/rds-deployment-ha-broker/azuredeploy.json -------------------------------------------------------------------------------- /rds-deployment-ha-broker/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/rds-deployment-ha-broker/azuredeploy.parameters.json -------------------------------------------------------------------------------- /rds-deployment-ha-broker/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/rds-deployment-ha-broker/metadata.json -------------------------------------------------------------------------------- /rds-deployment-ha-gateway/Configuration.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/rds-deployment-ha-gateway/Configuration.zip -------------------------------------------------------------------------------- /rds-deployment-ha-gateway/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/rds-deployment-ha-gateway/README.md -------------------------------------------------------------------------------- /rds-deployment-ha-gateway/Scripts/WebAndGwFarmAdd_PostConfig1.1.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/rds-deployment-ha-gateway/Scripts/WebAndGwFarmAdd_PostConfig1.1.ps1 -------------------------------------------------------------------------------- /rds-deployment-ha-gateway/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/rds-deployment-ha-gateway/azuredeploy.json -------------------------------------------------------------------------------- /rds-deployment-ha-gateway/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/rds-deployment-ha-gateway/azuredeploy.parameters.json -------------------------------------------------------------------------------- /rds-deployment-ha-gateway/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/rds-deployment-ha-gateway/metadata.json -------------------------------------------------------------------------------- /rds-deployment/Configuration.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/rds-deployment/Configuration.zip -------------------------------------------------------------------------------- /rds-deployment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/rds-deployment/README.md -------------------------------------------------------------------------------- /rds-deployment/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/rds-deployment/azuredeploy.json -------------------------------------------------------------------------------- /rds-deployment/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/rds-deployment/azuredeploy.parameters.json -------------------------------------------------------------------------------- /rds-deployment/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/rds-deployment/metadata.json -------------------------------------------------------------------------------- /rds-deployment/vnet-with-dns-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/rds-deployment/vnet-with-dns-server.json -------------------------------------------------------------------------------- /rds-update-certificate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/rds-update-certificate/README.md -------------------------------------------------------------------------------- /rds-update-certificate/Scripts/New-ServicePrincipal.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/rds-update-certificate/Scripts/New-ServicePrincipal.ps1 -------------------------------------------------------------------------------- /rds-update-certificate/Scripts/Script.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/rds-update-certificate/Scripts/Script.ps1 -------------------------------------------------------------------------------- /rds-update-certificate/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/rds-update-certificate/azuredeploy.json -------------------------------------------------------------------------------- /rds-update-certificate/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/rds-update-certificate/azuredeploy.parameters.json -------------------------------------------------------------------------------- /rds-update-certificate/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/rds-update-certificate/metadata.json -------------------------------------------------------------------------------- /rds-update-rdsh-collection/DSC/Configuration.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/rds-update-rdsh-collection/DSC/Configuration.zip -------------------------------------------------------------------------------- /rds-update-rdsh-collection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/rds-update-rdsh-collection/README.md -------------------------------------------------------------------------------- /rds-update-rdsh-collection/Scripts/Script.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/rds-update-rdsh-collection/Scripts/Script.ps1 -------------------------------------------------------------------------------- /rds-update-rdsh-collection/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/rds-update-rdsh-collection/azuredeploy.json -------------------------------------------------------------------------------- /rds-update-rdsh-collection/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/rds-update-rdsh-collection/azuredeploy.parameters.json -------------------------------------------------------------------------------- /rds-update-rdsh-collection/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/rds-update-rdsh-collection/metadata.json -------------------------------------------------------------------------------- /sample-hybrid-application/Hybrid-Deployment/Deploy-SolutionAzure.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/sample-hybrid-application/Hybrid-Deployment/Deploy-SolutionAzure.ps1 -------------------------------------------------------------------------------- /sample-hybrid-application/Hybrid-Deployment/Deploy-SolutionAzureStack.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/sample-hybrid-application/Hybrid-Deployment/Deploy-SolutionAzureStack.ps1 -------------------------------------------------------------------------------- /sample-hybrid-application/Hybrid-Deployment/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/sample-hybrid-application/Hybrid-Deployment/appsettings.json -------------------------------------------------------------------------------- /sample-hybrid-application/Hybrid-Deployment/cmak_error_fix.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/sample-hybrid-application/Hybrid-Deployment/cmak_error_fix.ps1 -------------------------------------------------------------------------------- /sample-hybrid-application/Hybrid-Deployment/cross-cloud-scale/.deployment: -------------------------------------------------------------------------------- 1 | SCM_DO_BUILD_DURING_DEPLOYMENT=false -------------------------------------------------------------------------------- /sample-hybrid-application/Hybrid-Deployment/cross-cloud-scale/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0" 3 | } 4 | -------------------------------------------------------------------------------- /sample-hybrid-application/Hybrid-Deployment/northwind/sqldbcreate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/sample-hybrid-application/Hybrid-Deployment/northwind/sqldbcreate.ps1 -------------------------------------------------------------------------------- /sample-hybrid-application/Hybrid-Deployment/northwind/sqlscript.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/sample-hybrid-application/Hybrid-Deployment/northwind/sqlscript.json -------------------------------------------------------------------------------- /sample-hybrid-application/Hybrid-Deployment/ref_architecture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/sample-hybrid-application/Hybrid-Deployment/ref_architecture.jpg -------------------------------------------------------------------------------- /sample-hybrid-application/Northwind.Insurance.Website.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/sample-hybrid-application/Northwind.Insurance.Website.sln -------------------------------------------------------------------------------- /sample-hybrid-application/Northwind.Insurance.Website/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "wwwroot/lib" 3 | } 4 | -------------------------------------------------------------------------------- /sample-hybrid-application/Northwind.Insurance.Website/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/sample-hybrid-application/Northwind.Insurance.Website/Program.cs -------------------------------------------------------------------------------- /sample-hybrid-application/Northwind.Insurance.Website/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/sample-hybrid-application/Northwind.Insurance.Website/Startup.cs -------------------------------------------------------------------------------- /sample-hybrid-application/Northwind.Insurance.Website/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/sample-hybrid-application/Northwind.Insurance.Website/app.config -------------------------------------------------------------------------------- /sample-hybrid-application/Northwind.Insurance.Website/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/sample-hybrid-application/Northwind.Insurance.Website/appsettings.json -------------------------------------------------------------------------------- /sample-hybrid-application/Northwind.Insurance.Website/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/sample-hybrid-application/Northwind.Insurance.Website/bower.json -------------------------------------------------------------------------------- /sample-hybrid-application/Northwind.Insurance.Website/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/sample-hybrid-application/Northwind.Insurance.Website/bundleconfig.json -------------------------------------------------------------------------------- /sample-hybrid-application/Northwind.Insurance.Website/obj/Debug/net452/win7-x86/Northwind.Insurance.Website.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 9987a72952add59280bb2c8070ce5f722b22c9a0 2 | -------------------------------------------------------------------------------- /sample-hybrid-application/Northwind.Insurance.Website/obj/Debug/net452/win7-x86/Northwind.Insurance.Website.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 5f2e012ac1fb41752738678cb5250b94c77f39f3 2 | -------------------------------------------------------------------------------- /sample-hybrid-application/Northwind.Insurance.Website/obj/Debug/net452/win7-x86/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample-hybrid-application/Northwind.Insurance.Website/obj/Debug/net452/win7-x86/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample-hybrid-application/Northwind.Insurance.Website/obj/Debug/net452/win7-x86/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample-hybrid-application/Northwind.Insurance.Website/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Write your Javascript code. 2 | -------------------------------------------------------------------------------- /sample-hybrid-application/Northwind.Insurance.Website/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample-hybrid-application/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/sample-hybrid-application/README.md -------------------------------------------------------------------------------- /serviceFabricCluster-multipleNodeTypes/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/serviceFabricCluster-multipleNodeTypes/readme.md -------------------------------------------------------------------------------- /serviceFabricCluster-multipleNodeTypes/scripts/Publish-SecretToVault.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/serviceFabricCluster-multipleNodeTypes/scripts/Publish-SecretToVault.ps1 -------------------------------------------------------------------------------- /sql-2014-non-ha/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/sql-2014-non-ha/Readme.md -------------------------------------------------------------------------------- /sql-2014-non-ha/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/sql-2014-non-ha/azuredeploy.json -------------------------------------------------------------------------------- /sql-2014-non-ha/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/sql-2014-non-ha/azuredeploy.parameters.json -------------------------------------------------------------------------------- /sql-2014-non-ha/deploySqlStandalone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/sql-2014-non-ha/deploySqlStandalone.json -------------------------------------------------------------------------------- /sql-2014-non-ha/deploySqlStandalone.ps1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/sql-2014-non-ha/deploySqlStandalone.ps1.zip -------------------------------------------------------------------------------- /sql-2014-non-ha/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/sql-2014-non-ha/metadata.json -------------------------------------------------------------------------------- /sql-2014-non-ha/sqlVmTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/sql-2014-non-ha/sqlVmTemplate.json -------------------------------------------------------------------------------- /sql-2014-standalone/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/sql-2014-standalone/Readme.md -------------------------------------------------------------------------------- /sql-2014-standalone/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/sql-2014-standalone/azuredeploy.json -------------------------------------------------------------------------------- /sql-2014-standalone/deploySqlStandalone_NonDomain.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/sql-2014-standalone/deploySqlStandalone_NonDomain.zip -------------------------------------------------------------------------------- /sql-2014-standalone/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/sql-2014-standalone/metadata.json -------------------------------------------------------------------------------- /sql-2016-alwayson/CreateADPDC.ps1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/sql-2016-alwayson/CreateADPDC.ps1.zip -------------------------------------------------------------------------------- /sql-2016-alwayson/CreateFailoverCluster.ps1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/sql-2016-alwayson/CreateFailoverCluster.ps1.zip -------------------------------------------------------------------------------- /sql-2016-alwayson/CreateFileShareWitness.ps1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/sql-2016-alwayson/CreateFileShareWitness.ps1.zip -------------------------------------------------------------------------------- /sql-2016-alwayson/PrepareAlwaysOnSqlServer.ps1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/sql-2016-alwayson/PrepareAlwaysOnSqlServer.ps1.zip -------------------------------------------------------------------------------- /sql-2016-alwayson/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/sql-2016-alwayson/Readme.md -------------------------------------------------------------------------------- /sql-2016-alwayson/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/sql-2016-alwayson/azuredeploy.json -------------------------------------------------------------------------------- /sql-2016-alwayson/azuredeploy.json.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/sql-2016-alwayson/azuredeploy.json.bak -------------------------------------------------------------------------------- /sql-2016-alwayson/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/sql-2016-alwayson/azuredeploy.parameters.json -------------------------------------------------------------------------------- /sql-2016-alwayson/configuringAlwaysOn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/sql-2016-alwayson/configuringAlwaysOn.json -------------------------------------------------------------------------------- /sql-2016-alwayson/creatingADNIC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/sql-2016-alwayson/creatingADNIC.json -------------------------------------------------------------------------------- /sql-2016-alwayson/creatingNICS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/sql-2016-alwayson/creatingNICS.json -------------------------------------------------------------------------------- /sql-2016-alwayson/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/sql-2016-alwayson/metadata.json -------------------------------------------------------------------------------- /sql-2016-alwayson/preparingSqlServer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/sql-2016-alwayson/preparingSqlServer.json -------------------------------------------------------------------------------- /sql-2016-alwayson/provisioningADVM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/sql-2016-alwayson/provisioningADVM.json -------------------------------------------------------------------------------- /sql-2016-alwayson/provisioningSQLVMs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/sql-2016-alwayson/provisioningSQLVMs.json -------------------------------------------------------------------------------- /sql-2016-alwayson/setupLBs-e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/sql-2016-alwayson/setupLBs-e.json -------------------------------------------------------------------------------- /sql-2016-alwayson/storageAccountVirtualNetworkPublicIP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/sql-2016-alwayson/storageAccountVirtualNetworkPublicIP.json -------------------------------------------------------------------------------- /sql-2016-alwayson/vnet-with-dns-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/sql-2016-alwayson/vnet-with-dns-server.json -------------------------------------------------------------------------------- /vmaccess-ext-win/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/vmaccess-ext-win/README.md -------------------------------------------------------------------------------- /vmaccess-ext-win/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/vmaccess-ext-win/azuredeploy.json -------------------------------------------------------------------------------- /vmaccess-ext-win/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/vmaccess-ext-win/azuredeploy.parameters.json -------------------------------------------------------------------------------- /vmaccess-ext-win/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/vmaccess-ext-win/metadata.json -------------------------------------------------------------------------------- /vs2013-tcta/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/vs2013-tcta/Readme.md -------------------------------------------------------------------------------- /vs2013-tcta/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/vs2013-tcta/azuredeploy.json -------------------------------------------------------------------------------- /vs2013-tcta/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/vs2013-tcta/azuredeploy.parameters.json -------------------------------------------------------------------------------- /vs2013-tcta/consoleVMTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/vs2013-tcta/consoleVMTemplate.json -------------------------------------------------------------------------------- /vs2013-tcta/deployTestAgent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/vs2013-tcta/deployTestAgent.json -------------------------------------------------------------------------------- /vs2013-tcta/deployTestAgent.ps1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/vs2013-tcta/deployTestAgent.ps1.zip -------------------------------------------------------------------------------- /vs2013-tcta/deployTestConsole.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/vs2013-tcta/deployTestConsole.json -------------------------------------------------------------------------------- /vs2013-tcta/deployTestConsole.ps1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/vs2013-tcta/deployTestConsole.ps1.zip -------------------------------------------------------------------------------- /vs2013-tcta/joindomain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/vs2013-tcta/joindomain.json -------------------------------------------------------------------------------- /vs2013-tcta/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/vs2013-tcta/metadata.json -------------------------------------------------------------------------------- /vs2013-tcta/taVMTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/vs2013-tcta/taVMTemplate.json -------------------------------------------------------------------------------- /wsus/InstallWSUS.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/wsus/InstallWSUS.ps1 -------------------------------------------------------------------------------- /wsus/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/wsus/azuredeploy.json -------------------------------------------------------------------------------- /wsus/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/wsus/azuredeploy.parameters.json -------------------------------------------------------------------------------- /wsus/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureStack-QuickStart-Templates/HEAD/wsus/metadata.json --------------------------------------------------------------------------------