Unattended Authentication to Azure (including managed identities!)

Поделиться
HTML-код
  • Опубликовано: 19 окт 2024

Комментарии • 26

  • @iamdedlok
    @iamdedlok 3 года назад

    Great coverage John! Thanks to your videos spending every day 30 min is adding to our knowledge/skills like magic!

  • @yulaw3289
    @yulaw3289 4 месяца назад

    enjoying this video for today learning, thanks a lot!

  • @Illuminaughty1942
    @Illuminaughty1942 3 года назад +1

    Excellent vid once again.
    John, do you know any case studies/white papers or any reference that you may personally use to assist with architectural decision making in Azure cloud? Not for certification but real world examples with architectural decisions other than what is shown in the Azure architecture center as that lacks context.

    • @NTFAQGuy
      @NTFAQGuy  3 года назад

      i don't use anything like that. the well architected framework and CAF would be best bet.

    • @Illuminaughty1942
      @Illuminaughty1942 3 года назад

      @@NTFAQGuy Thanks John

  • @dmb-uk
    @dmb-uk 3 года назад

    Hey John, cool video as always :-)
    Do you know if somehow we can use Unattended Authentication to sign-in to Exchange Online?

    • @NTFAQGuy
      @NTFAQGuy  3 года назад

      I don’t focus on exchange but it uses aad so I don’t see why you can’t use same approach and the account has exchange role but you would have to test.

  • @philipho4635
    @philipho4635 3 года назад +1

    Thanks for the great video John. However, I have a query on the Key Vault access. I understand the concept that we should store our secrets in the key vault, but in order to access these secrets, I first need to login (with password #1). Where do you recommend I store this password #1?

    • @NTFAQGuy
      @NTFAQGuy  3 года назад +1

      If you are in azure you use managed identity to get permission to the vault to get the secrets. If outside azure I didn’t say key vault I said vault ie some on premises option.

    • @philipho4635
      @philipho4635 3 года назад

      @@NTFAQGuy thanks for clarifying!

  • @patrickboucher892
    @patrickboucher892 3 года назад

    merci John. Great and interesting.

  • @somfi
    @somfi 3 года назад +1

    Hi John and thanks for a great video!
    I am trying to do an unattended authentication to Exchange Online through an Azure Function App and I'm having problems translating you video over to that type of authentication. Do you have any clues as to how to go forward with this?

    • @NTFAQGuy
      @NTFAQGuy  3 года назад +1

      Use a managed identity. Function is azure service and exchange inline uses aad so you need to give the managed identity the exchange online role.

    • @somfi
      @somfi 3 года назад

      Ok, thanks. I will give that a go :)

  • @rajuhubli4
    @rajuhubli4 3 года назад

    Thanks for the great content

  • @joeguancial269
    @joeguancial269 Месяц назад

    Thank you!

  • @osuraweerasinghe5516
    @osuraweerasinghe5516 3 года назад

    Thanks for the great content.
    Is there is a way to store private key in Azure Key-Vault and access that key from function app to SSH to remote machines.

  • @lexslimx
    @lexslimx 3 года назад

    Thanks!

  • @simongeering
    @simongeering 3 года назад

    System assigned managed identify is a nice way to do RBAC to KeyVault in a WebApp without the need for managing credentials.

    • @NTFAQGuy
      @NTFAQGuy  3 года назад +1

      yep, common pattern if you still need a secret for something from an Azure resource. I talk about that pattern in my video on secrets in Azure.

    • @NTFAQGuy
      @NTFAQGuy  3 года назад

      but ideally remove the secret altogether and use the AAD RBAC which is becoming more common.