Managed Identity in Azure DevOps Pipelines

แชร์
ฝัง
  • เผยแพร่เมื่อ 2 ก.พ. 2025

ความคิดเห็น • 8

  • @lmcdasm
    @lmcdasm 2 ปีที่แล้ว +8

    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 ปีที่แล้ว +3

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

    • @nachosam6814
      @nachosam6814 11 หลายเดือนก่อน

      Felt much the same

  • @miguelpquiroga
    @miguelpquiroga ปีที่แล้ว +3

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

  • @voxdiary
    @voxdiary 8 หลายเดือนก่อน

    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 3 ปีที่แล้ว

    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 2 ปีที่แล้ว +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 2 ปีที่แล้ว

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