Azure Application Insights Analytics Item

This page shows how to write Terraform and Azure Resource Manager for Application Insights Analytics Item and write them securely.

azurerm_application_insights_analytics_item (Terraform)

The Analytics Item in Application Insights can be configured in Terraform with the resource name azurerm_application_insights_analytics_item. The following sections describe 1 example of how to use the resource and its parameters.

Example Usage from GitHub

main.tf#L7
resource "azurerm_application_insights_analytics_item" "this" {
  application_insights_id = var.application_insights_id
  content                 = var.content
  function_alias          = var.function_alias
  name                    = var.name
  scope                   = var.scope

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

Explanation in Terraform Registry

Manages an Application Insights Analytics Item component.

Microsoft.Insights/components/analyticsItems (Azure Resource Manager)

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

Example Usage from GitHub

An example could not be found in GitHub.

Frequently asked questions

What is Azure Application Insights Analytics Item?

Azure Application Insights Analytics Item is a resource for Application Insights of Microsoft Azure. Settings can be wrote in Terraform.

Where can I find the example code for the Azure Application Insights Analytics Item?

For Terraform, the kevinhead/azurerm source code example is useful. See the Terraform Example section for further details.