Skip to content

Commit ad88f37

Browse files
committed
edit pass: deploy-with-arm-template-2
1 parent c9467fd commit ad88f37

File tree

1 file changed

+28
-30
lines changed

1 file changed

+28
-30
lines changed
Lines changed: 28 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,56 +1,54 @@
11
---
2-
title: Deploy Azure Video Indexer with Resource Manager template
3-
description: Learn how to create an Azure Video Indexer account with Azure Resource Manager template.
2+
title: Deploy Azure Video Indexer by using an ARM template
3+
description: Learn how to create an Azure Video Indexer account by using an Azure Resource Manager (ARM) template.
44
ms.topic: tutorial
55
ms.date: 05/23/2022
66
ms.author: juliako
77
---
88

9-
# Tutorial: Deploy Azure Video Indexer with the Azure Resource Manager template
9+
# Tutorial: Deploy Azure Video Indexer by using an ARM template
1010

11-
## Overview
12-
13-
In this tutorial, you will create an Azure Video Indexer account by using the Azure Resource Manager template (preview). The resource will be deployed to your subscription and will create the Azure Video Indexer resource based on parameters defined in the ```avam.template``` file.
11+
In this tutorial, you will create an Azure Video Indexer account by using the Azure Resource Manager template (preview). The resource will be deployed to your subscription and will create the Azure Video Indexer resource based on parameters defined in the *avam.template* file.
1412

1513
> [!NOTE]
1614
> This sample is *not* for connecting an existing Azure Video Indexer classic account to a Resource Manager-based Azure Video Indexer account.
17-
> For full documentation on Azure Video Indexer API, visit the [Developer portal](https://aka.ms/avam-dev-portal) page.
18-
> For the latest API version for ```Microsoft.VideoIndexer```, see the [template reference](/azure/templates/microsoft.videoindexer/accounts?tabs=bicep).
15+
16+
> For full documentation on Azure Video Indexer API, visit the [developer portal](https://aka.ms/avam-dev-portal). For the latest API version for *Microsoft.VideoIndexer*, see the [template reference](/azure/templates/microsoft.videoindexer/accounts?tabs=bicep).
1917
2018
## Prerequisites
2119

22-
An Azure Media Services account. You can create one for free through [Create a Media Services account](/azure/media-services/latest/account-create-how-to).
20+
You need an Azure Media Services account. You can create one for free through [Create a Media Services account](/azure/media-services/latest/account-create-how-to).
2321

2422
## Deploy the sample
2523

2624
----
2725

28-
### Option 1: Click the **Deploy To Azure** button, and fill in the missing parameters.
26+
### Option 1: Select the button for deploying to Azure, and fill in the missing parameters
2927

3028
[![Deploy to Azure](https://aka.ms/deploytoazurebutton)](https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fraw.githubusercontent.com%2FAzure-Samples%2Fmedia-services-video-indexer%2Fmaster%2FARM-Quick-Start%2Favam.template.json)
3129

3230
----
3331

34-
### Option 2: Deploy using a PowerShell script.
32+
### Option 2: Deploy by using a PowerShell script
3533

36-
1. Open the [template file](https://github.com/Azure-Samples/media-services-video-indexer/blob/master/ARM-Quick-Start/avam.template.json) and inspect its content.
37-
2. Fill in the required parameters (see below).
34+
1. Open the [template file](https://github.com/Azure-Samples/media-services-video-indexer/blob/master/ARM-Quick-Start/avam.template.json) and inspect its contents.
35+
2. Fill in the required parameters.
3836
3. Run the following PowerShell commands:
3937

40-
* Create a new Resource group on the same location as your Azure Video Indexer account using the [New-AzResourceGroup](/powershell/module/az.resources/new-azresourcegroup) cmdlet.
38+
* Create a new resource group on the same location as your Azure Video Indexer account by using the [New-AzResourceGroup](/powershell/module/az.resources/new-azresourcegroup) cmdlet.
4139

42-
```powershell
40+
```powershell
4341
New-AzResourceGroup -Name myResourceGroup -Location eastus
44-
```
42+
```
4543

46-
* Deploy the template to the resource group using the [New-AzResourceGroupDeployment](/powershell/module/az.resources/new-azresourcegroupdeployment) cmdlet.
44+
* Deploy the template to the resource group by using the [New-AzResourceGroupDeployment](/powershell/module/az.resources/new-azresourcegroupdeployment) cmdlet.
4745

48-
```powershell
49-
New-AzResourceGroupDeployment -ResourceGroupName myResourceGroup -TemplateFile ./avam.template.json
50-
```
46+
```powershell
47+
New-AzResourceGroupDeployment -ResourceGroupName myResourceGroup -TemplateFile ./avam.template.json
48+
```
5149

5250
> [!NOTE]
53-
> If you would like to work with Bicep format, see [Deploy by using Bicep](./deploy-with-bicep.md).
51+
> If you want to work with Bicep format, see [Deploy by using Bicep](./deploy-with-bicep.md).
5452
5553
## Parameters
5654

@@ -67,18 +65,18 @@ An Azure Media Services account. You can create one for free through [Create a M
6765
* Required: false
6866

6967
> [!NOTE]
70-
> You need to deploy Your Azure Video Indexer account in the same location (region) as the associated Azure Media Services resource.
68+
> You need to deploy your Azure Video Indexer account in the same location (region) as the associated Azure Media Services resource.
7169
7270
### mediaServiceAccountResourceId
7371

7472
* Type: string
75-
* Description: Specifies the Resource ID of the Azure Media Services resource.
73+
* Description: Specifies the resource ID of the Azure Media Services resource.
7674
* Required: true
7775

7876
### managedIdentityId
7977

8078
* Type: string
81-
* Description: Specifies the Resource ID of the Managed Identity used to grant access between Azure Media Services resource and the Azure Video Indexer account.
79+
* Description: Specifies the resource ID of the managed identity that's used to grant access between Azure Media Services resource and the Azure Video Indexer account.
8280
* Required: true
8381

8482
### tags
@@ -91,17 +89,17 @@ An Azure Media Services account. You can create one for free through [Create a M
9189

9290
If you're new to Azure Video Indexer, see:
9391

94-
* [Azure Video Indexer Documentation](./index.yml)
95-
* [Azure Video Indexer Developer Portal](https://api-portal.videoindexer.ai/)
92+
* [Azure Video Indexer documentation](./index.yml)
93+
* [Azure Video Indexer developer portal](https://api-portal.videoindexer.ai/)
9694

97-
After completing this tutorial, head to other Azure Video Indexer samples, described on [README.md](https://github.com/Azure-Samples/media-services-video-indexer/blob/master/README.md).
95+
After you complete this tutorial, head to other Azure Video Indexer samples described in [README.md](https://github.com/Azure-Samples/media-services-video-indexer/blob/master/README.md).
9896

9997
If you're new to template deployment, see:
10098

10199
* [Azure Resource Manager documentation](../azure-resource-manager/index.yml)
102-
* [Deploy Resources with Resource Manager Template](../azure-resource-manager/templates/deploy-powershell.md)
103-
* [Deploy Resources with Bicep and Azure CLI](../azure-resource-manager/bicep/deploy-cli.md)
100+
* [Deploy resources with ARM templates](../azure-resource-manager/templates/deploy-powershell.md)
101+
* [Deploy resources with Bicep and the Azure CLI](../azure-resource-manager/bicep/deploy-cli.md)
104102

105103
## Next steps
106104

107-
Connect a [classic paid Azure Video Indexer account to a](connect-classic-account-to-arm.md) Resource Manager-based account.
105+
Connect a [classic paid Azure Video Indexer account to a Resource Manager-based account](connect-classic-account-to-arm.md).

0 commit comments

Comments
 (0)