This template sets up a Linux Azure Virtual Machine that will execute all the bash scripts in an Azure Storage Blob Container and then self-destruct.
- Create a VM
- Run the custom script extension
- Runs a default script that downloads everything in a container
- Runs the indicated script (must be included in the container)
- (PENDING) Kill the VM
docker run -v $(pwd):/app --name runner-debug -it ubuntu bash /app/bootstrap.sh somescript.sh somecontainer someaccountname saskey AzureUSGovernment
az group create -n runner -l usgovvirginia
az group deployment create -n $(date +%Y%m%d%H%M%S) -g runner --template-file azuredeploy.json --parameters azuredeploy.parameters.json