Slightly OT: Proposal to provide Virtual Resource Groups on Azure #7854
-
For being able to test ARM templates, Bicep etc, it would be very feasible if Azure provided Resource Groups that don't serve real resources, but only mock resources. Then, ARM template deployment could be tested without any Azure computing resources being drained or charges/fees to be payed. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
That's an interesting idea. Also it would be a good goal to be able to at least plan do this, at some point in the future. One of the challenges, which I think is exposed with the If you are familiar with the whatif results, you would know that there is "noise". Where api definitions are not always accurate. Also another challenge/consideration is the stacking of resources, which are the layering of dependencies. Especially this is a challenge, since many Resource Providers are developed in somewhat isolation. For the time being, have you been able to acquire a developer subscription? Some have $x per month to test and deploy resources. I think between $50 to $150. One way to get one is via Microsoft Certified Trainer MCT... However there are other methods. I hope we get more discussion and feedback on this topic. |
Beta Was this translation helpful? Give feedback.
That's an interesting idea. Also it would be a good goal to be able to at least plan do this, at some point in the future.
One of the challenges, which I think is exposed with the
whatif
command, is that providers and api's were not originally written with this in mind.https://docs.microsoft.com/en-us/azure/azure-resource-manager/bicep/deploy-what-if?tabs=azure-powershell%2CCLI
If you are familiar with the whatif results, you would know that there is "noise". Where api definitions are not always accurate.
Also another challenge/consideration is the stacking of resources, which are the layering of dependencies. Especially this is a challenge, since many Resource Providers are developed in…