Azure API Management Diagnostic

This page shows how to write Terraform and Azure Resource Manager for API Management Diagnostic and write them securely.

azurerm_api_management_diagnostic (Terraform)

The Diagnostic in API Management can be configured in Terraform with the resource name azurerm_api_management_diagnostic. The following sections describe 3 examples of how to use the resource and its parameters.

Example Usage from GitHub

main.tf#L7
resource "azurerm_api_management_diagnostic" "this" {
  api_management_name = var.api_management_name
  enabled             = var.enabled
  identifier          = var.identifier
  resource_group_name = var.resource_group_name

main.tf#L7
resource "azurerm_api_management_diagnostic" "this" {
  api_management_name = var.api_management_name
  enabled             = var.enabled
  identifier          = var.identifier
  resource_group_name = var.resource_group_name

main.tf#L103
resource "azurerm_api_management_diagnostic" "this" {
  count = var.application_insights_instrumentation_key != null ? 1 : 0

  identifier               = "applicationinsights"
  resource_group_name      = var.resource_group_name
  api_management_name      = azurerm_api_management.this.name

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 API Management Service Diagnostic.

Microsoft.ApiManagement/service/diagnostics (Azure Resource Manager)

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

Example Usage from GitHub

An example could not be found in GitHub.

Parameters

  • apiVersion required - string
  • name required - string

    Diagnostic identifier. Must be unique in the current API Management service instance.

  • properties required
      • alwaysLog optional - string

        Specifies for what type of messages sampling settings should not apply.

      • backend optional
          • request optional
              • body optional
                  • bytes optional - integer

                    Number of request body bytes to log.

              • dataMasking optional
                  • headers optional array
                      • mode optional - string

                        Data masking mode.

                      • value optional - string

                        The name of an entity to mask (e.g. a name of a header or a query parameter).

                  • queryParams optional array
                      • mode optional - string

                        Data masking mode.

                      • value optional - string

                        The name of an entity to mask (e.g. a name of a header or a query parameter).

              • headers optional - array

                Array of HTTP Headers to log.

          • response optional
              • body optional
                  • bytes optional - integer

                    Number of request body bytes to log.

              • dataMasking optional
                  • headers optional array
                      • mode optional - string

                        Data masking mode.

                      • value optional - string

                        The name of an entity to mask (e.g. a name of a header or a query parameter).

                  • queryParams optional array
                      • mode optional - string

                        Data masking mode.

                      • value optional - string

                        The name of an entity to mask (e.g. a name of a header or a query parameter).

              • headers optional - array

                Array of HTTP Headers to log.

      • frontend optional
          • request optional
              • body optional
                  • bytes optional - integer

                    Number of request body bytes to log.

              • dataMasking optional
                  • headers optional array
                      • mode optional - string

                        Data masking mode.

                      • value optional - string

                        The name of an entity to mask (e.g. a name of a header or a query parameter).

                  • queryParams optional array
                      • mode optional - string

                        Data masking mode.

                      • value optional - string

                        The name of an entity to mask (e.g. a name of a header or a query parameter).

              • headers optional - array

                Array of HTTP Headers to log.

          • response optional
              • body optional
                  • bytes optional - integer

                    Number of request body bytes to log.

              • dataMasking optional
                  • headers optional array
                      • mode optional - string

                        Data masking mode.

                      • value optional - string

                        The name of an entity to mask (e.g. a name of a header or a query parameter).

                  • queryParams optional array
                      • mode optional - string

                        Data masking mode.

                      • value optional - string

                        The name of an entity to mask (e.g. a name of a header or a query parameter).

              • headers optional - array

                Array of HTTP Headers to log.

      • httpCorrelationProtocol optional - string

        Sets correlation protocol to use for Application Insights diagnostics.

      • logClientIp optional - boolean

        Log the ClientIP. Default is false.

      • loggerId required - string

        Resource Id of a target logger.

      • operationNameFormat optional - string

        The format of the Operation Name for Application Insights telemetries. Default is Name.

      • sampling optional
          • percentage optional - number

            Rate of sampling for fixed-rate sampling.

          • samplingType optional - string

            Sampling type.

      • verbosity optional - string

        The verbosity level applied to traces emitted by trace policies.

  • type required - string

Frequently asked questions

What is Azure API Management Diagnostic?

Azure API Management Diagnostic is a resource for API Management of Microsoft Azure. Settings can be wrote in Terraform.

Where can I find the example code for the Azure API Management Diagnostic?

For Terraform, the kevinhead/azurerm, niveklabs/azurerm and pagopa/azurerm source code examples are useful. See the Terraform Example section for further details.