Managed Identity in Azure DevOps Pipelines

Sdílet
Vložit
  • čas přidán 20. 09. 2021
  • Follow me on Twitter for more content: / houssemdellai
  • Věda a technologie

Komentáře • 8

  • @miguelpquiroga
    @miguelpquiroga Před 11 měsíci +2

    Is there a way to utilize Managed ID without building your own Self Agent VM IASS ?

  • @lmcdasm
    @lmcdasm Před rokem +6

    Hmm.,
    thanks for the demo for clicking through, however you dont show that it actually works.
    Since Managed IDs have to use a Host Agent, where do you show your azure-pipelines.xml with the pool settings for execution? As well, are you really using this Managed ID Service Connector? with what Task ? AzureCLI@2 ? or are you just doing "bash" and then doing your own "az login --identity -u

    • @nandivardhanreddy7080
      @nandivardhanreddy7080 Před 6 měsíci +2

      Exactly my question.
      Video stopped exactly where the topic of the video was supposed to start .

    • @nachosam6814
      @nachosam6814 Před 4 měsíci

      Felt much the same

  • @voxdiary
    @voxdiary Před měsícem

    do you know if we can make an image of this VM and supply to vmImage key in pipeline yml to spin it up on demand. i dont want to keep a self hosted VM up all the time just for CI/CD

  • @RawandReal85
    @RawandReal85 Před 2 lety

    Thanks Houssem for the video.. one question, when and why we should use system assigned managed identity over user assigned managed identity? Is there any specific individual usage or benefit of these two?

    • @ryanshannon6963
      @ryanshannon6963 Před 2 lety +2

      System assigned Managed Identity is scoped exclusively to the entity that was created. Meaning, if you create a VM inside Azure and use System Assigned Identity, that Identity will only be relevant for that VM.
      An User Assigned Managed Identity can group a collection of entities, and that User Assigned Identity must be manually deleted even if all of those resources are dropped. A system Assigned is only valid for a single entity. User Assigned can be used for multiple entities, if that's how you assign them.

    • @RawandReal85
      @RawandReal85 Před 2 lety

      @@ryanshannon6963 Thanks Ryan.. Appreciate your time for this explanation..