Microsoft Azure Essentials Fundamentals of Azure Second Edition e-optimized 5x11 pdf


Creating a virtual network using a Resource Manager template



Download 8,71 Mb.
Pdf ko'rish
bet154/260
Sana16.09.2021
Hajmi8,71 Mb.
#176022
1   ...   150   151   152   153   154   155   156   157   ...   260
Bog'liq
9781509302963 Microsoft Azure Essentials Fundamentals of Azure 2nd ed pdf

Creating a virtual network using a Resource Manager template 
Another way to create a virtual network is to create a Resource Manager template for your virtual 
network and deploy it by using the Azure portal. To do this, you choose Template Deployment from 
the Azure Marketplace, copy and paste your template into the template editor in the portal, then 
assign it to the appropriate resource group. Let’s see how this works.  
You can start with one of the Azure Quickstart Templates, which are here: 
https://github.com/Azure/azure-quickstart-templates
Or you can create your own from scratch (this is 
more difficult because you have to get the format and syntax exactly right). You can also export a 
template from the Azure portal for a resource group and edit it.  
We’re going to start with a basic template that creates a virtual network with two subnets. Here are 
the specifications: 
 
Location: WestUS. 
 
VNet: name = AzureBookVNet, address prefix is 192.168.0.0/16.  
 
Subnet #1: name = SubnetOne, address prefix is 192.168.20.0/24. 
 
Subnet #2: name = SubnetTwo, address prefix is 192.168.30.0/24. 
The template includes all of this information. It includes parameters for the input specifications with 
default values that you can override after loading the template in the portal. If you look through the 
following JSON template, you will see there is a restriction on allowed values for the location, and you 
will see the VNet information specified. 

  "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", 
  "contentVersion": "1.0.0.0", 
  "parameters": { 
    "location": { 
      "type": "string", 
      "defaultValue": "West US", 
      "allowedValues": [ 
          "West US", 
          "East US" 
       ], 
      "metadata": { 
        "description": "Deployment location" 
      } 
    }, 
    "vnetName": { 
      "type": "string", 
      "defaultValue": "AzureBookVNet", 
      "metadata": { 
        "description": "VNet name" 
      } 


143 
CHAPTER 5  |    Azure Virtual Networks 
 
    }, 
    "vnetAddressPrefix": { 
      "type": "string", 
      "defaultValue": "192.168.0.0/16", 
      "metadata": { 
        "description": "Address prefix" 
      } 
    }, 
    "subnet1Prefix": { 
      "type": "string", 
      "defaultValue": "192.168.20.0/24", 
      "metadata": { 
        "description": "Subnet 1 Prefix" 
      } 
    }, 
    "subnet1Name": { 
      "type": "string", 
      "defaultValue": "SubnetOne", 
      "metadata": { 
        "description": "Subnet 1 Name" 
      } 
    }, 
    "subnet2Prefix": { 
      "type": "string", 
      "defaultValue": "192.168.30.0/24", 
      "metadata": { 
        "description": "Subnet 2 Prefix" 
      } 
    }, 
    "subnet2Name": { 
      "type": "string", 
      "defaultValue": "SubnetTwo", 
      "metadata": { 
        "description": "Subnet 2 Name" 
      } 
    } 
  }, 
   


144 
CHAPTER 5  |    Azure Virtual Networks 
 
  "variables": { }, 
  "resources": [ 
    { 
      "apiVersion": "2015-06-15", 
      "type": "Microsoft.Network/virtualNetworks", 
      "name": "[parameters('vnetName')]", 
      "location": "[parameters('location')]", 
      "properties": { 
        "addressSpace": { 
          "addressPrefixes": [ 
            "[parameters('vnetAddressPrefix')]" 
          ] 
        }, 
        "subnets": [ 
          { 
            "name": "[parameters('subnet1Name')]", 
            "properties": { 
              "addressPrefix": "[parameters('subnet1Prefix')]" 
            } 
          }, 
          { 
            "name": "[parameters('subnet2Name')]", 
            "properties": { 
              "addressPrefix": "[parameters('subnet2Prefix')]" 
            } 
          }        ] 
      } 
    } 
  ] 

Now deploy this template through the Azure portal. When you do this, you will create a new resource 
group for your network.  

Download 8,71 Mb.

Do'stlaringiz bilan baham:
1   ...   150   151   152   153   154   155   156   157   ...   260




Ma'lumotlar bazasi mualliflik huquqi bilan himoyalangan ©hozir.org 2024
ma'muriyatiga murojaat qiling

kiriting | ro'yxatdan o'tish
    Bosh sahifa
юртда тантана
Боғда битган
Бугун юртда
Эшитганлар жилманглар
Эшитмадим деманглар
битган бодомлар
Yangiariq tumani
qitish marakazi
Raqamli texnologiyalar
ilishida muhokamadan
tasdiqqa tavsiya
tavsiya etilgan
iqtisodiyot kafedrasi
steiermarkischen landesregierung
asarlaringizni yuboring
o'zingizning asarlaringizni
Iltimos faqat
faqat o'zingizning
steierm rkischen
landesregierung fachabteilung
rkischen landesregierung
hamshira loyihasi
loyihasi mavsum
faolyatining oqibatlari
asosiy adabiyotlar
fakulteti ahborot
ahborot havfsizligi
havfsizligi kafedrasi
fanidan bo’yicha
fakulteti iqtisodiyot
boshqaruv fakulteti
chiqarishda boshqaruv
ishlab chiqarishda
iqtisodiyot fakultet
multiservis tarmoqlari
fanidan asosiy
Uzbek fanidan
mavzulari potok
asosidagi multiservis
'aliyyil a'ziym
billahil 'aliyyil
illaa billahil
quvvata illaa
falah' deganida
Kompyuter savodxonligi
bo’yicha mustaqil
'alal falah'
Hayya 'alal
'alas soloh
Hayya 'alas
mavsum boyicha


yuklab olish