5. Azure Bicep - Create Resource Group

Поділитися
Вставка
  • Опубліковано 7 лют 2025
  • In this video, you will learn the below
    What is a Resource Group
    How to create the resource group using Bicep
    #AzureDevOps #AzureResourceGroup #AzureBicep

КОМЕНТАРІ • 14

  • @swapnashetti
    @swapnashetti 4 місяці тому

    Such a clear explanation, do more videos on IaC please

  • @VikashKumar-kn2ip
    @VikashKumar-kn2ip Рік тому

    Very well explained sir, can you please share the document

  • @amitchandrathakur4068
    @amitchandrathakur4068 2 роки тому

    Thanks for such a informative video Please make more videos

  • @harry_official_143
    @harry_official_143 Рік тому

    Why didn’t you provide any subscription details in bicep? Without subscription where does the resource group created.

  • @methodical-monkey
    @methodical-monkey Рік тому +2

    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.

    • @satishchirala
      @satishchirala 7 місяців тому

      no-hardcoded-location

    • @satishchirala
      @satishchirala 7 місяців тому +1

      targetScope = 'subscription'
      resource azbicepresourcegroup 'Microsoft.Resources/resourceGroups@2023-07-01' = {
      name:'azbicepresourcegroup'
      location: 'global'

      }

    • @sujisachi5090
      @sujisachi5090 4 місяці тому

      How did you put the API version?

  • @TellaTrix
    @TellaTrix 3 роки тому

    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.

    • @larrygolding1314
      @larrygolding1314 2 роки тому +1

      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.

    • @TellaTrix
      @TellaTrix 2 роки тому

      @@larrygolding1314 Oh ok, I thing I missed those video. I will have look on those video. Thank you Larry

  • @ajayghose4701
    @ajayghose4701 2 роки тому +1

    Very well explained, Thanks Praveen sir