Azure Bicep March 2021: Learn everything about the next generation of ARM Templates

Поділитися
Вставка
  • Опубліковано 6 вер 2024
  • Azure Bicep is a revision to the Azure ARM Template Language. In this Microsoft Ignite March 2021 Conference session Brendan Burns and Alex Frankel talk about the investments and benefits of using Bicep an open source infrastructure as code language.
    You can learn more about Bicep here: github.com/Azu...

КОМЕНТАРІ • 17

  • @danieleggert2329
    @danieleggert2329 Рік тому +1

    Stll an appropriate tutorial, two years later. Timely information.

  • @momomomo82289
    @momomomo82289 3 роки тому +2

    Why do I feel like this should be everywhere! Thanks for putting in the hard yards.

  • @andyman8455
    @andyman8455 3 роки тому +1

    1700 views, 49 thumbs upsies. Bicep is the next big thing and I happenstanced across it by accident recently - how about pulling some kind of ad campaign to get this into the hands of everybody, they need it for sure.

  • @nawalsingh1789
    @nawalsingh1789 3 роки тому +1

    Great Context. Specifically, those looping based on modular way. I was always wondering how to enhance these entire ARM template deployment to the next level of full-fledged programming to provide extensive control Really Excited.

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

    This is simply great way to do deployments

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

    I enjoyed it! Great way to show how all works together!

  • @TeamDman
    @TeamDman 3 роки тому +1

    This video is really well put together, thank you!

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

    well it's broken in VScode right now

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

    Great way ahead

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

    Amazing progress since Ignite 2019!

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

      Thank you! Please feel free to provide any feedback or feature requests in our GitHub repo here: github.com/Azure/bicep

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

    This looks really good & tested with some of my code snippets. How do I deploy an VM to an existing vNet/Subnet using the Bicep as in the ARM template, we do have to grab the vNetid of the vNet and then creating the reference for the subnet to be used in the networkprofile.

  • @teemops
    @teemops 3 роки тому +1

    Looks like Terraform

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

    This is great!

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

    Not sure the world needs yet another DSL for IaC....

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

    Hey, How can I delete or update bicep template and all the resources it has deployed? just like we can delete or update CloudFormation and Terraform templates (along with resources)
    az deployment commands don't have update option and while using az deployment delete it does not delete the resources.
    I know there is a --mode Complete option which will delete resources in my resource group that are not present in my bicep template "az deployment group create -f ./main.bicep -g my-rg --mode Complete" but I am writing Azure Policy which are scoped to subscription and management level. In that case I don't have any resource group where I can deploy Azure policies. Do you know how to update or delete resources then ?