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

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

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
```