An open API service indexing awesome lists of open source software.

https://github.com/jefking/uhackfest

Hacking on Azure Batch (mainly)
https://github.com/jefking/uhackfest

arm azure azure-batch batch cloud iaac template

Last synced: 2 months ago
JSON representation

Hacking on Azure Batch (mainly)

Awesome Lists containing this project

README

        

# Azure Upgrade Custom Hackfest
Major challenges facing Azure upgrade. Tackled in order; to help learning and remove technical blockers.

## Helpful Commands
### Login to Azure via CLI
```
az login
```
### Set Default Subscription
```
az account set --subscription ""
```

### Create Resource Group
```
az group create -g hackers --location "West US 2"
```

### Create resource: example for subdirectories
```
az group deployment create \
--name deployment \
--resource-group hackers \
--template-file resources.json \
--parameters parameters.json
```