Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/itpropro/bicep-reproduction
https://github.com/itpropro/bicep-reproduction
Last synced: 10 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/itpropro/bicep-reproduction
- Owner: itpropro
- Created: 2022-06-29T18:33:02.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-12-15T14:37:47.000Z (about 1 year ago)
- Last Synced: 2024-12-08T19:40:53.028Z (18 days ago)
- Language: Bicep
- Size: 750 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Reproduction repository for Azure bicep issues
Current issue:
**listKeys not idempotent**
Deployments use version 0.6.0 of the CARML library. As there are currently no public bicep registries with current versions of the CARML, it is copied under the current version subfolder to the `modules` folder.
### Create repro environment
To recreate the environment with Azure CLI, execute the following commands:
```PowerShell
az login # Login to your Azure environment
az subscription set -s [SUBSCRIPTION_ID] # Change to your desired target subscription for the deployment
az account show # Verify if on the correct subscription
cd X:\repos\bicep-reproduction # Cd into this repo
az deployment sub create -l 'westeurope' -n (New-Guid).Guid -f .\reproduction.bicep # Execute a deployment with Azure CLI and location westeurope
```### Deprovisioning
Just delete all the created resource groups. They are created with "{PREFIX}-{ENVIRONMENT}".
If your environments are "prod" and "test" and you prefix is "testbicep" your resource groups will be:- testbicep-dev
- testbicep-prod