This template creates a GPU Vm with OBS-Studio, Skype, MS-Teams for event streaming. It creates the VM in a new vnet, storage account, nic, and public ip with the new compute stack. All installation process based on Chocolately package manager
This Azure Resource Manager (ARM) template was created by a member of the community and not by Microsoft. Each ARM template is licensed to you under a licence agreement by its owner, not Microsoft. Microsoft is not responsible for ARM templates provided and licensed by community members and does not screen for security, compatibility or performance. Community ARM templates are not supported under any Microsoft support programme or service and are made available AS IS without warranty of any kind.
Parameters
Parameter Name | Description |
---|---|
location | Location of ressources |
vm_name | Local name for the VM can be whatever you want |
adminUsername | User name for the Virtual Machine. |
adminPassword | Password for the Virtual Machine. |
vmSize | Desired Size of the VM. Any valid option accepted but if you choose premium storage type you must choose a DS class VM size. |
virtualNetwork_name | (no description available) |
nic_name | (no description available) |
publicIPAddress_name | (no description available) |
dnsprefix | (no description available) |
networkSecurityGroup_name | (no description available) |
setupChocolateyScriptFileName | PowerShell script name to execute |
_artifactsLocation | Public uri location of PowerShell Chocolately setup script |
_artifactsLocationSasToken | The sasToken required to access _artifactsLocation. When the template is deployed using the accompanying scripts, a sasToken will be automatically generated. Use the defaultValue if the staging location is not secured. |
chocoPackages | List of Chocolatey packages to install separated by a semi-colon eg. linqpad;sysinternals |
Use the template
PowerShell
New-AzResourceGroup -Name <resource-group-name> -Location <resource-group-location> #use this command when you need to create a new resource group for your deploymentInstall and configure Azure PowerShell
New-AzResourceGroupDeployment -ResourceGroupName <resource-group-name> -TemplateUri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/application-workloads/obs/obs-studio-stream-vm-chocolatey/azuredeploy.json
Command line
az group create --name <resource-group-name> --location <resource-group-location> #use this command when you need to create a new resource group for your deploymentInstall and Configure the Azure Cross-Platform Command-Line Interface
az group deployment create --resource-group <my-resource-group> --template-uri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/application-workloads/obs/obs-studio-stream-vm-chocolatey/azuredeploy.json