SFTP Support in Azure Blob Storage

Поділитися
Вставка
  • Опубліковано 11 гру 2024

КОМЕНТАРІ • 21

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

    This is an excellent video!, this channel is going to favorites :)

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

      Thanks heaps Christian! I’m glad you liked it and thanks so much for the nice words :)

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

    Great demonstration Matt, I configured as I watched.

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

      Hey Philip, thanks so much for watching. Awesome that you followed along and glad you found it useful!

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

    Thanks, Mate. This got me going.

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

      Awesome Adam! It’s been a while mate, hope you are doing well :)

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

    Hi Matt, Its very Useful to configure. Thanks

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

      You’re welcome, glad you liked it!

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

    this is so good video , helps a lot.

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

      Thanks so much, I'm glad you found it helpful!

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

      @@MattAllford sorry, forgot to say 'Thank you so much' ...

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

    yes but i think pricing is same as azure if we sftp own instances then it will not cost much

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

      Pricing is definitely something to weigh up with the different offerings in cloud platforms!

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

    can we able to access(download ) the file from the blob storage account even if the site is down??
    In our scenario if the want to download the file they have to hit our application. so if its down can we able to download the file from the Blob storage account?? or can we able to download through curl command??

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

      Hey Vinodha. Yes, you can directly access the SFTP service of Azure storage from a client machine, but then there would be considerations around network access controls, authentication, etc

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

      @@MattAllford Thanks for the responce. but still im not clear. if you go for blob storage account to store your packages. off course if the VM goes down still you can access the files this is admin point of view. If you think customer poin of view. Can they able to donload the file from the storage account?? if the VM maschine does down? or is there any such storage account??

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

      if youn have can you share the links.

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

    Thank you very much for this demo! One additionnal question if I may, how can I make sure Azure doen't change the SSH key in the future? (it happened to me a few time where the user coudn't acces my file :/ )

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

      Thanks for watching!
      I’m not aware of Microsoft automatically changing any SSH keys you might have generated, that sounds a little odd and I don’t think I have any pointers sorry. Might be worth a ticket to support if you notice it again?

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

    Hi Matt, this video is helpful. Is there way that we can automate the creation of local users and setting up directories for them using some program. And automate the process using devops. I'm looking for an answer from you. Cheers

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

      Hi Pavan. I had a quick look at this, and it's not immediately clear if this is available in an ARM / Bicep template and what the syntax would be.
      With that said, there is a set of Azure CLI commands (in preview) that look like they could be used to create / modify / delete the local users - docs.microsoft.com/en-us/cli/azure/storage/account/local-user?view=azure-cli-latest. You'd need to install the extension first with "az extension add --name storage-preview"
      There are also some REST APIs by the looks of the documentation, check for Microsoft.Storage/storageAccounts/localUsers on the following page - docs.microsoft.com/en-us/azure/role-based-access-control/resource-provider-operations
      Hope this helps!