In this video, you will learn the below What is a Resource Group How to create the resource group using Bicep #AzureDevOps #AzureResourceGroup #AzureBicep
Praveen I typed exactly what you have and it failed with the message: az deployment sub create -l eastus -f 1.ResourceGroup.bicep The target scope "resourceGroup" does not match the deployment scope "subscription". My file is below: targetScope = 'subscription' resource azbicepresourcegroup 'Microsoft.Resources/resourceGroups@2023-07-01' = { name:'azbicepresourcegroup' location:'eastus' } Never mind: once I put the API version to what you had it worked. Thank You. Great Video!. Very rare for someone to do actual demo's that someone could follow along. So much appreciate your effort.
Hi Praveen, Why do we use bicep over arm template ? What special things in bicep that we can't use it in arm template. It would be very grate if you could explain one of the video.
Such a clear explanation, do more videos on IaC please
Very well explained sir, can you please share the document
Thanks for such a informative video Please make more videos
Why didn’t you provide any subscription details in bicep? Without subscription where does the resource group created.
Praveen I typed exactly what you have and it failed with the message: az deployment sub create -l eastus -f 1.ResourceGroup.bicep
The target scope "resourceGroup" does not match the deployment scope "subscription".
My file is below:
targetScope = 'subscription'
resource azbicepresourcegroup 'Microsoft.Resources/resourceGroups@2023-07-01' = {
name:'azbicepresourcegroup'
location:'eastus'
}
Never mind: once I put the API version to what you had it worked.
Thank You. Great Video!. Very rare for someone to do actual demo's that someone could follow along. So much appreciate your effort.
no-hardcoded-location
targetScope = 'subscription'
resource azbicepresourcegroup 'Microsoft.Resources/resourceGroups@2023-07-01' = {
name:'azbicepresourcegroup'
location: 'global'
}
How did you put the API version?
Hi Praveen, Why do we use bicep over arm template ? What special things in bicep that we can't use it in arm template. It would be very grate if you could explain one of the video.
Pramad, Bicep syntax is much more concise and easier to read. Praveen gives a few examples of that in the first few videos in this series.
@@larrygolding1314 Oh ok, I thing I missed those video. I will have look on those video. Thank you Larry
Very well explained, Thanks Praveen sir
Thank you