Azure Video Analyzer Video Analyzer

This page shows how to write Terraform and Azure Resource Manager for Video Analyzer Video Analyzer and write them securely.

azurerm_video_analyzer (Terraform)

The Video Analyzer in Video Analyzer can be configured in Terraform with the resource name azurerm_video_analyzer. The following sections describe how to use the resource and its parameters.

Example Usage from GitHub

An example could not be found in GitHub.

Review your Terraform file for Azure best practices

Shisho Cloud, our free checker to make sure your Terraform configuration follows best practices, is available (beta).

Parameters

The following arguments are supported:

  • name - (Required) Specifies the name of the Video Analyzer. Changing this forces a new resource to be created.

  • resource_group_name - (Required) The name of the resource group in which to create the Video Analyzer. Changing this forces a new resource to be created.

  • location - (Required) Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.

  • storage_account - (Required) A storage_account block as defined below.

  • identity - (Required) An identity block as defined below.

  • tags - (Optional) A mapping of tags assigned to the resource.


A storage_account block supports the following:

  • id - (Required) Specifies the ID of the Storage Account that will be associated with the Video Analyzer instance.

  • user_assigned_identity_id - (Required) Specifies the User Assigned Identity ID which should be assigned to a access this Storage Account.


A identity block supports the following:

  • type - (Required) Specifies the type of Managed Identity that should be configured on this Video Analyzer. At this time the only possible value is UserAssigned.

  • identity_ids - (Required) A list of User Assigned Identity ID's to be assigned to this Video Analyzer.


The following attributes are exported:

  • id - The ID of the Video Analyzer.

Explanation in Terraform Registry

Manages a Video Analyzer.

Microsoft.Media/videoAnalyzers (Azure Resource Manager)

The videoAnalyzers in Microsoft.Media can be configured in Azure Resource Manager with the resource name Microsoft.Media/videoAnalyzers. The following sections describe how to use the resource and its parameters.

Example Usage from GitHub

Template.json#L50
      "type": "Microsoft.Media/videoAnalyzers",
      "name": "[parameters('videoAnalyzer').name]",
      "apiVersion": "[variables('videoAnalyzerApiVersion')]",
      "location": "[resourceGroup().location]",
      "identity": {
        "type": "UserAssigned",
video-analyzer.deploy.json#L167
            "type": "Microsoft.Media/videoAnalyzers",
            "apiVersion": "2021-05-01-preview",
            "name": "[variables('accountName')]",
            "location": "[resourceGroup().location]",
            "dependsOn": [
                "deploy-storage-and-identity"
video-analyzer.deploy.json#L133
            "type": "Microsoft.Media/videoAnalyzers",
            "comments": "The Azure Video Analyzer account",
            "apiVersion": "2021-05-01-preview",
            "name": "[variables('accountName')]",
            "location": "[resourceGroup().location]",
            "dependsOn": [
video-analyzer.deploy.json#L134
            "type": "Microsoft.Media/videoAnalyzers",                   //Depends on Depolyment 1
            "comments": "The Azure Video Analyzer account",
            "apiVersion": "2021-05-01-preview",
            "name": "[variables('accountName')]",
            "location": "[resourceGroup().location]",
            "dependsOn": [
video-analyzer.deploy.json#L134
            "type": "Microsoft.Media/videoAnalyzers",                   //Depends on Depolyment 1
            "comments": "The Azure Video Analyzer account",
            "apiVersion": "2021-05-01-preview",
            "name": "[variables('accountName')]",
            "location": "[resourceGroup().location]",
            "dependsOn": [
avadeploy.json#L153
            "type": "Microsoft.Media/videoAnalyzers",
            "comments": "The Azure Video Analyzer account",
            "apiVersion": "2021-11-01-preview",
            "name": "[variables('accountName')]",
            "location": "[resourceGroup().location]",
            "dependsOn": [
video-analyzer.deploy.json#L133
            "type": "Microsoft.Media/videoAnalyzers",
            "comments": "The Azure Video Analyzer account",
            "apiVersion": "2021-05-01-preview",
            "name": "[variables('accountName')]",
            "location": "[resourceGroup().location]",
            "dependsOn": [
video-analyzer-accounts-list-all-accounts.json#L14
            "type": "Microsoft.Media/videoAnalyzers",
            "location": "South Central US",
            "tags": {
              "tag1": "value1",
              "tag2": "value2"
            },
video-analyzer.deploy.json#L153
            "type": "Microsoft.Media/videoAnalyzers",
            "comments": "The Azure Video Analyzer account",
            "apiVersion": "2021-05-01-preview",
            "name": "[variables('accountName')]",
            "location": "[resourceGroup().location]",
            "dependsOn": [
video-analyzer-accounts-create-or-update.json#L55
        "type": "Microsoft.Media/videoAnalyzers",
        "location": "South Central US",
        "tags": {
          "tag1": "value1",
          "tag2": "value2"
        },

Frequently asked questions

What is Azure Video Analyzer Video Analyzer?

Azure Video Analyzer Video Analyzer is a resource for Video Analyzer of Microsoft Azure. Settings can be wrote in Terraform.