Azure Resources Creation

Ramkiran Hota 21 Reputation points
2020-04-21T01:05:57.537+00:00

What happens in the background, when I create a new VM resource in Azure? Is this all proprietary or can I find some info anywhere?

i'm looking more on how a new server with desired OS is spawned, what scripts are run to create this new VM etc....i believe this is something the magic which cannot be shared

Azure Virtual Machines
Azure Virtual Machines
An Azure service that is used to provision Windows and Linux virtual machines.
7,120 questions
0 comments No comments
{count} votes

Accepted answer
  1. thgibard-MSFT 356 Reputation points
    2020-04-21T07:59:57.337+00:00

    It's the "As a Service" magic. You will not find specific documentation on the way it's working. However, you can easily guess that storage (for managing the virtual disks of the VM), network (to connect your different resources together), and much more depending on the settings you've chosen - will be created in order to be able to use a virtual machine.

    If I'm taking the example of a virtual machine that would be created in Azure - when you're creating a new resource, you will see during the creation's process the details of all the connected and required components that will be provisioned too.

    7544-2020-04-21-09h55-06.png

    In this example, we can for example see that I've created a virtual machine but I can see that a resource group, a virtual network, a network security group, a storage account, subnet, ... - will also be created during this process.

    1 person found this answer helpful.
    0 comments No comments

1 additional answer

Sort by: Most helpful
  1. Ramkiran Hota 21 Reputation points
    2020-04-21T15:50:16.87+00:00

    Thank you for the detailed explanation

    0 comments No comments