You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
title: Deploy Azure Video Indexer with ARM template
3
-
description: Learn how to create an Azure Video Indexer account by using Azure Resource Manager (ARM) template.
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.
4
4
ms.topic: tutorial
5
5
ms.date: 05/23/2022
6
6
ms.author: juliako
7
7
---
8
8
9
-
# Tutorial: deploy Azure Video Indexer with ARM template
9
+
# Tutorial: Deploy Azure Video Indexer with the Azure Resource Manager template
10
10
11
11
## Overview
12
12
13
-
In this tutorial, you will create an Azure Video Indexer account by using Azure Resource Manager (ARM) template (preview).
14
-
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.
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.
15
14
16
15
> [!NOTE]
17
-
> This sample is *not* for connecting an existing Azure Video Indexer classic account to an ARM-based Azure Video Indexer account.
16
+
> This sample is *not* for connecting an existing Azure Video Indexer classic account to a Resource Manager-based Azure Video Indexer account.
18
17
> For full documentation on Azure Video Indexer API, visit the [Developer portal](https://aka.ms/avam-dev-portal) page.
19
-
> For the latest API version for Microsoft.VideoIndexer, see the [template reference](/azure/templates/microsoft.videoindexer/accounts?tabs=bicep).
18
+
> For the latest API version for ```Microsoft.VideoIndexer```, see the [template reference](/azure/templates/microsoft.videoindexer/accounts?tabs=bicep).
20
19
21
20
## Prerequisites
22
21
23
-
*An Azure Media Services (AMS) account. You can create one for free through the [Create AMS Account](/azure/media-services/latest/account-create-how-to).
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).
24
23
25
24
## Deploy the sample
26
25
27
26
----
28
27
29
-
### Option 1: Click the "Deploy To Azure Button", and fill in the missing parameters
28
+
### Option 1: Click the **Deploy To Azure** button, and fill in the missing parameters.
30
29
31
30
[](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)
32
31
33
32
----
34
33
35
-
### Option 2: Deploy using PowerShell Script
34
+
### Option 2: Deploy using a PowerShell script.
36
35
37
-
1. Open The[template file](https://github.com/Azure-Samples/media-services-video-indexer/blob/master/ARM-Quick-Start/avam.template.json) file and inspect its content.
38
-
2. Fill in the required parameters (see below)
39
-
3. Run the Following PowerShell commands:
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).
38
+
3. Run the following PowerShell commands:
40
39
41
-
* 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.
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.
@@ -51,15 +50,15 @@ The resource will be deployed to your subscription and will create the Azure Vid
51
50
```
52
51
53
52
> [!NOTE]
54
-
> If you would like to work with bicep format, see [Deploy by using Bicep](./deploy-with-bicep.md).
53
+
> If you would like to work with Bicep format, see [Deploy by using Bicep](./deploy-with-bicep.md).
55
54
56
55
## Parameters
57
56
58
57
### name
59
58
60
59
* Type: string
61
60
* Description: Specifies the name of the new Azure Video Indexer account.
62
-
* required: true
61
+
* Required: true
63
62
64
63
### location
65
64
@@ -68,41 +67,41 @@ The resource will be deployed to your subscription and will create the Azure Vid
68
67
* Required: false
69
68
70
69
> [!NOTE]
71
-
> You need to deploy Your Azure Video Indexer account in the same location (region) as the associated Azure Media Services(AMS) resource exists.
70
+
> You need to deploy Your Azure Video Indexer account in the same location (region) as the associated Azure Media Services resource.
72
71
73
72
### mediaServiceAccountResourceId
74
73
75
74
* Type: string
76
-
* Description: The Resource ID of the Azure Media Services(AMS) resource.
75
+
* Description: Specifies the Resource ID of the Azure Media Services resource.
77
76
* Required: true
78
77
79
78
### managedIdentityId
80
79
81
80
* Type: string
82
-
* Description: The Resource ID of the Managed Identity used to grant access between Azure Media Services(AMS) resource and the Azure Video Indexer account.
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.
83
82
* Required: true
84
83
85
84
### tags
86
85
87
86
* Type: object
88
-
* Description: Array of objects that represents custom user tags on the Azure Video Indexer account
89
-
90
-
Required: false
87
+
* Description: Specifies the array of objects that represents custom user tags on the Azure Video Indexer account.
88
+
* Required: false
91
89
92
90
## Reference documentation
93
91
94
92
If you're new to Azure Video Indexer, see:
95
93
96
94
* [Azure Video Indexer Documentation](./index.yml)
97
95
* [Azure Video Indexer Developer Portal](https://api-portal.videoindexer.ai/)
98
-
* 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)
96
+
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).
0 commit comments