This repository contains the Bicep source for the Pluralsight hands-on lab Make Your First Azure Infrastructure as Code Update. It defines a single Azure Storage account managed as Infrastructure as Code, providing the baseline that learners inspect, preview, and update during the lab.
| File | Purpose |
|---|---|
main.bicep |
Source template that defines the storage account, its parameters, and its outputs. |
main.dev.bicepparam |
Input parameter file for the baseline deployment (Standard_LRS with dev tags). |
main.prod.bicepparam |
Input parameter file for the production update (Standard_GRS with production tags and costCenter). |
.gitignore |
Excludes build artifacts, deployment logs, and editor/OS files. |
main.bicep deploys one Microsoft.Storage/storageAccounts resource at the resource group scope:
- A globally unique name.
- A configurable redundancy SKU.
- Governance tags.
- An Azure subscription and a resource group that serves as the deployment scope.
- Azure CLI with the Bicep tooling.