https://github.com/gettek/azure-bicep-demo
Azure Bicep Demos
https://github.com/gettek/azure-bicep-demo
Last synced: 5 months ago
JSON representation
Azure Bicep Demos
- Host: GitHub
- URL: https://github.com/gettek/azure-bicep-demo
- Owner: gettek
- License: mit
- Created: 2021-05-14T11:59:52.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2021-10-06T15:31:37.000Z (over 4 years ago)
- Last Synced: 2025-02-07T14:40:40.579Z (over 1 year ago)
- Language: Bicep
- Size: 51.8 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Azure Bicep Demos
## Getting Started
* [Install the Bicep CLI](https://github.com/Azure/bicep/blob/main/docs/installing.md) by following the instruction.
* Build the `main.bicep` file by running the Bicep CLI command to generate the ARM template:
```bash
bicep build ./main.bicep
```
## Validate
```bash
az deployment group validate -f main.bicep -g rg-dev-uks-bicep-test --debug
```
## Deploy with Bicep
```bash
az deployment group create -f main.bicep -g rg-dev-uks-bicep-test
```
## Deploy with ARM
```bash
az deployment group create -f main.json -g rg-dev-uks-bicep-test
```