Welcome! - This is the AzInsider Home Page
Welcome to the AzInsider repository – your gateway to deploying diverse workloads effortlessly in your Azure environment using the power of Bicep language.
🌟 Star this repository now to stay updated and show your support for the project
We look forward to connecting with you and fostering a vibrant community together!
The AzInsider Repo offers code samples to help you deploy various workloads in your Azure environment using Bicep language.
It simplifies the deployment process and makes it easy to get your applications up and running in Azure. Check it out!
- 📂 Explore the application-workloads directory for a rich collection of real-world application samples.
- 💡 Contribute and make your mark in the Azure community!
- Begin by installing the necessary tooling.
- Master Bicep with the Bicep Learning Path.
Option 1. Local Machine Deployment:
Deploy application samples directly from your local machine using Windows Terminal and Azure PowerShell.
$date = Get-Date -Format "MM-dd-yyyy"
$rand = Get-Random -Maximum 1000
$deploymentName = "AzInsiderDeployment-"+"$date"+"-"+"$rand"
New-AzResourceGroupDeployment -Name $deploymentName -ResourceGroupName azinsider_demo -TemplateFile .\main.bicep -TemplateParameterFile .\azuredeploy.parameters.json -c
You can also utilize a Bicep parameters file for added flexibility.
Option 2. Azure Portal Deployment:
- Access the Azure Portal, open CloudShell (using PowerShell), and clone this repository:
git clone https://github.com/daveRendon/azinsider.git
cd azinsider/application-workloads
- Once in the working directory of the sample application, execute the following command:
$date = Get-Date -Format "MM-dd-yyyy"
$rand = Get-Random -Maximum 1000
$deploymentName = "AzInsiderDeployment-"+"$date"+"-"+"$rand"
New-AzResourceGroupDeployment -Name $deploymentName -ResourceGroupName azinsider_demo -TemplateFile .\main.bicep -TemplateParameterFile .\azuredeploy.parameters.json -c
Join us in simplifying Azure deployments with Bicep and unleash the full potential of your cloud projects! 🔥
The following table shows all the Bicep Application Samples.
Review the Application Samples
Review the FAQ
Learn how to contribute