Share via

Azure storage account IaaS or PaaS

Abdalrahman Dabor 20 Reputation points
2025-07-01T14:53:48.2666667+00:00

Hi,

Azure storage account is IaaS or PaaS?
As I understand it can be categorised under both IaaS and PaaS, depending on the use case.

For example, in this qa:
Your company plans to migrate all its data and resources to Azure.

The company’s migration plan states that only platform as a service (PaaS) solutions must be used in Azure.

You need to deploy an Azure environment that supports the planned migration.

Solution: You create an Azure App Service and Azure Storage accounts.

Does this meet the goal?

So, here how can I know if it will be used as IaaS or PaaS without more information about how the company are planning to use this server

Azure Storage
Azure Storage

Globally unique resources that provide access to data management services and serve as the parent namespace for the services.

0 comments No comments

Answer accepted by question author

  1. Anonymous
    2025-07-01T15:23:28.9333333+00:00

    Hello ABOD

    Thank you for your question!

    Please be informed that Azure Storage accounts can be categorized as both IaaS and PaaS, depending on the specific storage service being used within the account and the way it's consumed.

    App Services commonly use Blob Storage for things like static website content, images, user-uploaded files, or logs. Blob Storage is a pure PaaS offering. They might also use Azure Files for shared content that multiple instances need to access, which is also a PaaS offering.

    Yes, creating an Azure App Service and Azure Storage accounts does meet the goal of using only PaaS solutions in this context. The storage accounts are implicitly assumed to be used for their PaaS features (like Blob storage or Azure Files) to support the App Service, rather than for IaaS components like virtual machine disks.

    So, (Azure App Service and Azure Storage Accounts) meets the goal of using only PaaS solutions, as Azure Storage Accounts are classified as PaaS unless explicitly used for IaaS workloads like VM disks. Without additional details suggesting an IaaS use case, assume PaaS for Azure Storage Accounts.

    Hope the above answer helps! Please let us know do you have any further queries.


    Please do not forget to "Accept the answer” and “up-vote” wherever the information provided helps you, this can be beneficial to other community members. 

    1 person found this answer helpful.

2 additional answers

Sort by: Most helpful
  1. Marcin Policht 87,575 Reputation points MVP Volunteer Moderator
    2025-07-01T15:20:06.1166667+00:00

    Yep - the classification of Azure Storage as IaaS or PaaS does depend to some extent on the context.

    By default, Azure Storage is considered a PaaS offering.

    • Azure Storage (Blobs, Tables, Queues, Files, Disks) provides managed services for storing data.
    • You don’t manage the underlying infrastructure like disks, file systems, or VMs.
    • Microsoft handles scalability, availability, and maintenance.
    • You access it via APIs, SDKs, or through higher-level services.

    IaaS storage typically refers to attaching managed disks to VMs, where the VM and its OS are managed by you (like in a typical IaaS deployment).

    So, in your scenario:

    "You create an Azure App Service and Azure Storage accounts." "The company’s migration plan states that only PaaS solutions must be used in Azure." "Does this meet the goal?"

    My take would be that this does meet the goal:

    • Azure App Service is clearly a PaaS offering.
    • Azure Storage Account (used for Blob, Queue, Table, File, etc.) is also PaaS, unless you're specifically attaching it as a disk to an IaaS VM (which is not the case here).

    On the other hand, note that sometimes you might also see references to Azure Storage as IaaS because it's one of thee "infrastructure building block" of Azure solutions (in addition to compute and networking) - but I don't believe this would apply in this context.

    More at https://learn.microsoft.com/en-us/answers/questions/1341827/are-azure-storage-services-characterized-as-iaas-o


    If the above response helps answer your question, remember to "Accept Answer" so that others in the community facing similar issues can easily find the solution. Your contribution is highly appreciated.

    hth

    Marcin

    1 person found this answer helpful.
    0 comments No comments

  2. Abdalrahman Dabor 20 Reputation points
    2025-07-03T21:18:36.9033333+00:00

    Thank you for the explanation :)

    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.