Public repo hosting Microsoft Tech Talks "Building with Bicep" demo files. Session link: https://mtt.eventbuilder.com/event/60562?source=MTTEUROPE
- Kevin Evans - GitHub: @kevinevans1 - Twitter: https://twitter.com/thekevinevans
- Jack Tracey - GitHub: @jtracey93 - Twitter: https://twitter.com/Jack_Ref
- Visual Studio Code (VS Code)
- GIT
- Azure CLI
- Azure Subscription
- Create a free subscription here
Follow the below instructions to get hands on with these pre-made demos.
- Clone this git repo to your local machine
git clone https://github.com/kevinevans1/mtt-building-with-bicep
- Change into the correct directory inside the repo you've cloned
cd <PATH TO CLONE REPO>/mtt-building-with-bicep/samples/l200/azure-storage-container
- Login into your Azure subscription
az login
- Select Azure Subscription
az account set --subscription "Subscription Name"
- Create Resource Group
az group create --location "westeurope" \
--name "Storage-Account-POC"
- Deploy Bicep file and modules
az deployment group create --resource-group "Storage-Account-POC" --template-file main.bicep
- Change into the correct directory inside the repo you've cloned
cd <PATH TO CLONE REPO>/mtt-building-with-bicep/samples/l300/azure-hub-spoke-vnet
- Login into your Azure subscription
az login
- Select Azure Subscription
az account set --subscription "Subscription Name"
- Create Resource Group
az group create --location "westeurope" \
--name "Hub-Spoke-POC"
- Deploy Bicep file and modules
az deployment group create --resource-group "Hub-Spoke-POC" --template-file main.bicep