Skip to content

Latest commit

 

History

History
135 lines (77 loc) · 7.15 KB

resource-group-template-deploy-portal.md

File metadata and controls

135 lines (77 loc) · 7.15 KB
title description services documentationcenter author manager editor ms.service ms.workload ms.tgt_pltfrm ms.devlang ms.topic ms.date ms.author
Use Azure portal to deploy Azure resources | Microsoft Docs
Use Azure portal and Azure Resource Manage to deploy your resources.
azure-resource-manager,azure-portal
tfitzmac
timlt
tysonn
azure-resource-manager
multiple
na
na
article
09/08/2017
tomfitz

Deploy resources with Resource Manager templates and Azure portal

This topic shows how to use the Azure portal with Azure Resource Manager to deploy your Azure resources. To learn about managing your resources, see Manage Azure resources through portal.

Create resource group

  1. To create an empty resource group, select Resource groups.

    Select resource groups

  2. Under Resource groups, select Add.

    Add resource group

  3. Give it a name and location, and, if necessary, select a subscription. You need to provide a location for the resource group because the resource group stores metadata about the resources. For compliance reasons, you may want to specify where that metadata is stored. In general, we recommend that you specify a location where most of your resources will reside. Using the same location can simplify your template.

    Set group values

    When you have finished setting the properties, select Create.

  4. To see your new resource group, select Refresh.

    Refresh resource groups

Deploy resources from Marketplace

After you create a resource group, you can deploy resources to it from the Marketplace. The Marketplace provides pre-defined solutions for common scenarios.

  1. To start a deployment, select New.

    New resource

  2. Find the type of resource you would like to deploy.

    Select resource type

  3. If you do not see the particular solution you would like to deploy, you can search the Marketplace for it. For example, to find a Wordpress solution, start typing Wordpress and select the option you want.

    Search marketplace

  4. Depending on the type of selected resource, you have a collection of relevant properties to set before deployment. For all types, you must select a destination resource group. The following image shows how to create a web app and deploy it to the resource group you created.

    Create resource group

    Alternatively, you can decide to create a resource group when deploying your resources. Select Create new and give the resource group a name.

    Create new resource group

  5. Your deployment begins. The deployment could take a few minutes. When the deployment has finished, you see a notification.

    View notification

  6. After deploying your resources, you can add more resources to the resource group by selecting Add.

    Add resource

Deploy resources from custom template

If you want to execute a deployment but not use any of the templates in the Marketplace, you can create a customized template that defines the infrastructure for your solution. To learn about creating templates, see Understand the structure and syntax of Azure Resource Manager templates.

  1. To deploy a customized template through the portal, select New, and search for Template Deployment until you can select it from the options.

    Search template deployment

  2. Select Create.

    Select create

  3. You see several options for creating a template. Select Build your own template in the editor.

    View options

  4. You have a blank template that is available for customizing.

    Create template

  5. You can edit the JSON syntax manually, or select a pre-built template from the Quickstart template gallery. However, for this article, you use the Add resource option.

    Edit template

  6. Select Storage account and provide a name. When finished providing values, select OK.

    Select storage account

  7. The editor automatically adds JSON for the resource type. Notice that it includes a parameter for defining the type of storage account. Select Save.

    Show template

  8. Now, you have the option to deploy the resources defined in the template. To deploy, agree to the terms and conditions, and select Purchase.

    Deploy template

Deploy resources from a template saved to your account

The portal enables you to save a template to your Azure account, and redeploy it later. For more information about working with these saved templates, Get started with private templates on the Azure portal.

  1. To find your saved templates, select More services.

    More services

  2. Search for templates and select that option.

    Search templates

  3. From the list of templates saved to your account, select the one you wish to work on.

    Saved templates

  4. Select Deploy to redeploy this saved template.

    Deploy saved template

Next steps