Skip to content

Commit 89965dd

Browse files
committed
Revise content rg
1 parent f77e955 commit 89965dd

7 files changed

Lines changed: 6 additions & 6 deletions

content/en/posts/azure-resource-group/images/WU7V6YGA8.png renamed to content/en/posts/azure-resource-group/images/apply-roles-to-resource-group.png

File renamed without changes.

content/en/posts/azure-resource-group/images/HKcNv7ErM.jpg renamed to content/en/posts/azure-resource-group/images/azure-cloud-shell.jpg

File renamed without changes.

content/en/posts/azure-resource-group/images/9axOGrVk2.png renamed to content/en/posts/azure-resource-group/images/azure-resource-manager.png

File renamed without changes.

content/en/posts/azure-resource-group/images/q1OpO1mDE.jpg renamed to content/en/posts/azure-resource-group/images/move-resources-to-another-resource-group.jpg

File renamed without changes.

content/en/posts/azure-resource-group/images/Rzze-aFBI.jpg renamed to content/en/posts/azure-resource-group/images/popular-azure-resources.jpg

File renamed without changes.

content/en/posts/azure-resource-group/images/TC3M9BqWL.jpg renamed to content/en/posts/azure-resource-group/images/why-do-i-need-a-resource-group.jpg

File renamed without changes.

content/en/posts/azure-resource-group/index.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ Before explaining what's a resource group, I have to explain what's a resource i
1919
A **resource** is simply an instance of a service that you create in Azure. It can be anything! For example, virtual machines, web apps, databases, function apps, etc.
2020

2121
Here some popular Azure resources:
22-
![Popular Azure resources](images/Rzze-aFBI.jpg)
22+
![Popular Azure resources](images/popular-azure-resources.jpg)
2323

2424
When you deploy a resource in Azure, it has to be included in a **resource group**.
2525

2626
If you have an AWS background like me, it's something weird, and I wanted to understand why I needed it.
2727

28-
![Why do I need a Resource group?](images/TC3M9BqWL.jpg)
28+
![Why do I need a Resource group?](images/why-do-i-need-a-resource-group.jpg)
2929

3030
## Resource group
3131

@@ -37,13 +37,13 @@ Now, you may be wondering what's the benefits of this approach.
3737

3838
Let's say you want to apply roles to all your productive resources. You don't need to apply them for each resource. You can directly add your roles to resource groups!
3939

40-
![Apply roles to resource group](images/WU7V6YGA8.png)
40+
![Apply roles to resource group](images/apply-roles-to-resource-group.png)
4141

4242
Another benefit of resource groups is to force you to think about architecture. Every time you create a new resource, you have to think about which resource group you're gonna use. Because we tend to be uneasy with chaos, our brain gonna create order at some point.
4343

4444
For sure, you can decide to put everything in the same resource group, but it's easy to move your resources from one resource group to another.
4545

46-
![Move resources to another resource group](images/q1OpO1mDE.jpg)
46+
![Move resources to another resource group](images/move-resources-to-another-resource-group.jpg)
4747

4848
Note: A resource group can contain resources located in different regions. For instance, you can have your virtual machine deployed in East US and your Azure Cosmos DB in West US.
4949

@@ -59,7 +59,7 @@ Basically, when you send a request to Azure, you send a request to ARM!
5959

6060
Resource Manager checks if you have the authorizations and forward the request to the Azure service, which takes the action: creating the virtual machine for instance.
6161

62-
![Azure Resource Manager](images/9axOGrVk2.png)
62+
![Azure Resource Manager](images/azure-resource-manager.png)
6363

6464
With this layer, we can do more powerful things like automating deployment with templates. In Azure, we call that: **ARM template**! It's a chapter in itself and I'll write about it in another post.
6565

@@ -77,7 +77,7 @@ We're gonna use Azure Cloud Shell to run our commands.
7777

7878
Azure Cloud Shell is an interactive, browser-accessible shell for managing Azure resources. We can use either Bash or PowerShell commands there.
7979

80-
![Azure Cloud Shell](images/HKcNv7ErM.jpg)
80+
![Azure Cloud Shell](images/azure-cloud-shell.jpg)
8181

8282
### Create a resource group and virtual network
8383

0 commit comments

Comments
 (0)