1. Packages
  2. Packages
  3. Datadog Provider
  4. API Docs
  5. azure
  6. Integration
Viewing docs for Datadog v5.2.0
published on Thursday, May 21, 2026 by Pulumi
datadog logo
Viewing docs for Datadog v5.2.0
published on Thursday, May 21, 2026 by Pulumi

    Provides a Datadog - Microsoft Azure integration resource. This can be used to create and manage the integrations.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as datadog from "@pulumi/datadog";
    
    // Create a new Datadog - Microsoft Azure integration using a client secret
    const sandbox = new datadog.azure.Integration("sandbox", {
        tenantName: "<azure_tenant_name>",
        clientId: "<azure_client_id>",
        clientSecret: "<azure_client_secret_key>",
        hostFilters: "examplefilter:true,example:true",
        appServicePlanFilters: "examplefilter:true,example:another",
        containerAppFilters: "examplefilter:true,example:one_more",
        automute: true,
        cspmEnabled: true,
        customMetricsEnabled: false,
    });
    // Or, using secretless (federated workload identity) authentication.
    // Note: secretless authentication is currently in Preview.
    const sandboxSecretless = new datadog.azure.Integration("sandbox_secretless", {
        tenantName: "<azure_tenant_name>",
        clientId: "<azure_client_id>",
        secretlessAuthEnabled: true,
    });
    
    import pulumi
    import pulumi_datadog as datadog
    
    # Create a new Datadog - Microsoft Azure integration using a client secret
    sandbox = datadog.azure.Integration("sandbox",
        tenant_name="<azure_tenant_name>",
        client_id="<azure_client_id>",
        client_secret="<azure_client_secret_key>",
        host_filters="examplefilter:true,example:true",
        app_service_plan_filters="examplefilter:true,example:another",
        container_app_filters="examplefilter:true,example:one_more",
        automute=True,
        cspm_enabled=True,
        custom_metrics_enabled=False)
    # Or, using secretless (federated workload identity) authentication.
    # Note: secretless authentication is currently in Preview.
    sandbox_secretless = datadog.azure.Integration("sandbox_secretless",
        tenant_name="<azure_tenant_name>",
        client_id="<azure_client_id>",
        secretless_auth_enabled=True)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-datadog/sdk/v5/go/datadog/azure"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		// Create a new Datadog - Microsoft Azure integration using a client secret
    		_, err := azure.NewIntegration(ctx, "sandbox", &azure.IntegrationArgs{
    			TenantName:            pulumi.String("<azure_tenant_name>"),
    			ClientId:              pulumi.String("<azure_client_id>"),
    			ClientSecret:          pulumi.String("<azure_client_secret_key>"),
    			HostFilters:           pulumi.String("examplefilter:true,example:true"),
    			AppServicePlanFilters: pulumi.String("examplefilter:true,example:another"),
    			ContainerAppFilters:   pulumi.String("examplefilter:true,example:one_more"),
    			Automute:              pulumi.Bool(true),
    			CspmEnabled:           pulumi.Bool(true),
    			CustomMetricsEnabled:  pulumi.Bool(false),
    		})
    		if err != nil {
    			return err
    		}
    		// Or, using secretless (federated workload identity) authentication.
    		// Note: secretless authentication is currently in Preview.
    		_, err = azure.NewIntegration(ctx, "sandbox_secretless", &azure.IntegrationArgs{
    			TenantName:            pulumi.String("<azure_tenant_name>"),
    			ClientId:              pulumi.String("<azure_client_id>"),
    			SecretlessAuthEnabled: pulumi.Bool(true),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Datadog = Pulumi.Datadog;
    
    return await Deployment.RunAsync(() => 
    {
        // Create a new Datadog - Microsoft Azure integration using a client secret
        var sandbox = new Datadog.Azure.Integration("sandbox", new()
        {
            TenantName = "<azure_tenant_name>",
            ClientId = "<azure_client_id>",
            ClientSecret = "<azure_client_secret_key>",
            HostFilters = "examplefilter:true,example:true",
            AppServicePlanFilters = "examplefilter:true,example:another",
            ContainerAppFilters = "examplefilter:true,example:one_more",
            Automute = true,
            CspmEnabled = true,
            CustomMetricsEnabled = false,
        });
    
        // Or, using secretless (federated workload identity) authentication.
        // Note: secretless authentication is currently in Preview.
        var sandboxSecretless = new Datadog.Azure.Integration("sandbox_secretless", new()
        {
            TenantName = "<azure_tenant_name>",
            ClientId = "<azure_client_id>",
            SecretlessAuthEnabled = true,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.datadog.azure.Integration;
    import com.pulumi.datadog.azure.IntegrationArgs;
    import java.util.ArrayList;
    import java.util.Arrays;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            // Create a new Datadog - Microsoft Azure integration using a client secret
            var sandbox = new Integration("sandbox", IntegrationArgs.builder()
                .tenantName("<azure_tenant_name>")
                .clientId("<azure_client_id>")
                .clientSecret("<azure_client_secret_key>")
                .hostFilters("examplefilter:true,example:true")
                .appServicePlanFilters("examplefilter:true,example:another")
                .containerAppFilters("examplefilter:true,example:one_more")
                .automute(true)
                .cspmEnabled(true)
                .customMetricsEnabled(false)
                .build());
    
            // Or, using secretless (federated workload identity) authentication.
            // Note: secretless authentication is currently in Preview.
            var sandboxSecretless = new Integration("sandboxSecretless", IntegrationArgs.builder()
                .tenantName("<azure_tenant_name>")
                .clientId("<azure_client_id>")
                .secretlessAuthEnabled(true)
                .build());
    
        }
    }
    
    resources:
      # Create a new Datadog - Microsoft Azure integration using a client secret
      sandbox:
        type: datadog:azure:Integration
        properties:
          tenantName: <azure_tenant_name>
          clientId: <azure_client_id>
          clientSecret: <azure_client_secret_key>
          hostFilters: examplefilter:true,example:true
          appServicePlanFilters: examplefilter:true,example:another
          containerAppFilters: examplefilter:true,example:one_more
          automute: true
          cspmEnabled: true
          customMetricsEnabled: false
      # Or, using secretless (federated workload identity) authentication.
      # Note: secretless authentication is currently in Preview.
      sandboxSecretless:
        type: datadog:azure:Integration
        name: sandbox_secretless
        properties:
          tenantName: <azure_tenant_name>
          clientId: <azure_client_id>
          secretlessAuthEnabled: true
    
    Example coming soon!
    

    Create Integration Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new Integration(name: string, args: IntegrationArgs, opts?: CustomResourceOptions);
    @overload
    def Integration(resource_name: str,
                    args: IntegrationArgs,
                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def Integration(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    client_id: Optional[str] = None,
                    tenant_name: Optional[str] = None,
                    custom_metrics_enabled: Optional[bool] = None,
                    client_secret: Optional[str] = None,
                    container_app_filters: Optional[str] = None,
                    cspm_enabled: Optional[bool] = None,
                    app_service_plan_filters: Optional[str] = None,
                    host_filters: Optional[str] = None,
                    metrics_enabled: Optional[bool] = None,
                    metrics_enabled_default: Optional[bool] = None,
                    resource_collection_enabled: Optional[bool] = None,
                    resource_provider_configs: Optional[Sequence[IntegrationResourceProviderConfigArgs]] = None,
                    secretless_auth_enabled: Optional[bool] = None,
                    automute: Optional[bool] = None,
                    usage_metrics_enabled: Optional[bool] = None)
    func NewIntegration(ctx *Context, name string, args IntegrationArgs, opts ...ResourceOption) (*Integration, error)
    public Integration(string name, IntegrationArgs args, CustomResourceOptions? opts = null)
    public Integration(String name, IntegrationArgs args)
    public Integration(String name, IntegrationArgs args, CustomResourceOptions options)
    
    type: datadog:azure:Integration
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "datadog_azure_integration" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args IntegrationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args IntegrationArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args IntegrationArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args IntegrationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args IntegrationArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var integrationResource = new Datadog.Azure.Integration("integrationResource", new()
    {
        ClientId = "string",
        TenantName = "string",
        CustomMetricsEnabled = false,
        ClientSecret = "string",
        ContainerAppFilters = "string",
        CspmEnabled = false,
        AppServicePlanFilters = "string",
        HostFilters = "string",
        MetricsEnabled = false,
        MetricsEnabledDefault = false,
        ResourceCollectionEnabled = false,
        ResourceProviderConfigs = new[]
        {
            new Datadog.Azure.Inputs.IntegrationResourceProviderConfigArgs
            {
                MetricsEnabled = false,
                Namespace = "string",
            },
        },
        SecretlessAuthEnabled = false,
        Automute = false,
        UsageMetricsEnabled = false,
    });
    
    example, err := azure.NewIntegration(ctx, "integrationResource", &azure.IntegrationArgs{
    	ClientId:                  pulumi.String("string"),
    	TenantName:                pulumi.String("string"),
    	CustomMetricsEnabled:      pulumi.Bool(false),
    	ClientSecret:              pulumi.String("string"),
    	ContainerAppFilters:       pulumi.String("string"),
    	CspmEnabled:               pulumi.Bool(false),
    	AppServicePlanFilters:     pulumi.String("string"),
    	HostFilters:               pulumi.String("string"),
    	MetricsEnabled:            pulumi.Bool(false),
    	MetricsEnabledDefault:     pulumi.Bool(false),
    	ResourceCollectionEnabled: pulumi.Bool(false),
    	ResourceProviderConfigs: azure.IntegrationResourceProviderConfigArray{
    		&azure.IntegrationResourceProviderConfigArgs{
    			MetricsEnabled: pulumi.Bool(false),
    			Namespace:      pulumi.String("string"),
    		},
    	},
    	SecretlessAuthEnabled: pulumi.Bool(false),
    	Automute:              pulumi.Bool(false),
    	UsageMetricsEnabled:   pulumi.Bool(false),
    })
    
    resource "datadog_azure_integration" "integrationResource" {
      client_id                   = "string"
      tenant_name                 = "string"
      custom_metrics_enabled      = false
      client_secret               = "string"
      container_app_filters       = "string"
      cspm_enabled                = false
      app_service_plan_filters    = "string"
      host_filters                = "string"
      metrics_enabled             = false
      metrics_enabled_default     = false
      resource_collection_enabled = false
      resource_provider_configs {
        metrics_enabled = false
        namespace       = "string"
      }
      secretless_auth_enabled = false
      automute                = false
      usage_metrics_enabled   = false
    }
    
    var integrationResource = new com.pulumi.datadog.azure.Integration("integrationResource", com.pulumi.datadog.azure.IntegrationArgs.builder()
        .clientId("string")
        .tenantName("string")
        .customMetricsEnabled(false)
        .clientSecret("string")
        .containerAppFilters("string")
        .cspmEnabled(false)
        .appServicePlanFilters("string")
        .hostFilters("string")
        .metricsEnabled(false)
        .metricsEnabledDefault(false)
        .resourceCollectionEnabled(false)
        .resourceProviderConfigs(IntegrationResourceProviderConfigArgs.builder()
            .metricsEnabled(false)
            .namespace("string")
            .build())
        .secretlessAuthEnabled(false)
        .automute(false)
        .usageMetricsEnabled(false)
        .build());
    
    integration_resource = datadog.azure.Integration("integrationResource",
        client_id="string",
        tenant_name="string",
        custom_metrics_enabled=False,
        client_secret="string",
        container_app_filters="string",
        cspm_enabled=False,
        app_service_plan_filters="string",
        host_filters="string",
        metrics_enabled=False,
        metrics_enabled_default=False,
        resource_collection_enabled=False,
        resource_provider_configs=[{
            "metrics_enabled": False,
            "namespace": "string",
        }],
        secretless_auth_enabled=False,
        automute=False,
        usage_metrics_enabled=False)
    
    const integrationResource = new datadog.azure.Integration("integrationResource", {
        clientId: "string",
        tenantName: "string",
        customMetricsEnabled: false,
        clientSecret: "string",
        containerAppFilters: "string",
        cspmEnabled: false,
        appServicePlanFilters: "string",
        hostFilters: "string",
        metricsEnabled: false,
        metricsEnabledDefault: false,
        resourceCollectionEnabled: false,
        resourceProviderConfigs: [{
            metricsEnabled: false,
            namespace: "string",
        }],
        secretlessAuthEnabled: false,
        automute: false,
        usageMetricsEnabled: false,
    });
    
    type: datadog:azure:Integration
    properties:
        appServicePlanFilters: string
        automute: false
        clientId: string
        clientSecret: string
        containerAppFilters: string
        cspmEnabled: false
        customMetricsEnabled: false
        hostFilters: string
        metricsEnabled: false
        metricsEnabledDefault: false
        resourceCollectionEnabled: false
        resourceProviderConfigs:
            - metricsEnabled: false
              namespace: string
        secretlessAuthEnabled: false
        tenantName: string
        usageMetricsEnabled: false
    

    Integration Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The Integration resource accepts the following input properties:

    ClientId string
    Your Azure web application ID.
    TenantName string
    Your Azure Active Directory ID.
    AppServicePlanFilters string
    This comma-separated list of tags (in the form key:value,key:value) defines a filter that Datadog uses when collecting metrics from Azure App Service Plans. Only App Service Plans that match one of the defined tags are imported into Datadog. The rest, including the apps and functions running on them, are ignored. This also filters the metrics for any App or Function running on the App Service Plan(s). Defaults to "".
    Automute bool
    Silence monitors for expected Azure VM shutdowns. Defaults to false.
    ClientSecret string
    Your Azure web application secret key. Required unless secretlessAuthEnabled is set to true.
    ContainerAppFilters string
    This comma-separated list of tags (in the form key:value,key:value) defines a filter that Datadog uses when collecting metrics from Azure Container Apps. Only Container Apps that match one of the defined tags are imported into Datadog. Defaults to "".
    CspmEnabled bool
    When enabled, Datadog’s Cloud Security Management product scans resource configurations monitored by this app registration. Note: This requires resourceCollectionEnabled to be set to true. Defaults to false.
    CustomMetricsEnabled bool
    Enable custom metrics for your organization. Defaults to false.
    HostFilters string
    String of host tag(s) (in the form key:value,key:value) defines a filter that Datadog will use when collecting metrics from Azure. Limit the Azure instances that are pulled into Datadog by using tags. Only hosts that match one of the defined tags are imported into Datadog. e.x. env:production,deploymentgroup:red Defaults to "".
    MetricsEnabled bool
    Enable Azure metrics for your organization. Defaults to true.
    MetricsEnabledDefault bool
    Enable Azure metrics for your organization for resource providers where no resource provider config is specified. Defaults to true.
    ResourceCollectionEnabled bool
    When enabled, Datadog collects metadata and configuration info from cloud resources (such as compute instances, databases, and load balancers) monitored by this app registration.
    ResourceProviderConfigs List<IntegrationResourceProviderConfig>
    Configuration settings applied to resources from the specified Azure resource providers.
    SecretlessAuthEnabled bool
    (Preview) When enabled, Datadog authenticates to this app registration using federated workload identity credentials instead of a client secret. The app registration must have a Datadog federated credential for this to work. When true, clientSecret should be omitted. Defaults to false.
    UsageMetricsEnabled bool
    Enable azure.usage metrics for your organization. Defaults to true.
    ClientId string
    Your Azure web application ID.
    TenantName string
    Your Azure Active Directory ID.
    AppServicePlanFilters string
    This comma-separated list of tags (in the form key:value,key:value) defines a filter that Datadog uses when collecting metrics from Azure App Service Plans. Only App Service Plans that match one of the defined tags are imported into Datadog. The rest, including the apps and functions running on them, are ignored. This also filters the metrics for any App or Function running on the App Service Plan(s). Defaults to "".
    Automute bool
    Silence monitors for expected Azure VM shutdowns. Defaults to false.
    ClientSecret string
    Your Azure web application secret key. Required unless secretlessAuthEnabled is set to true.
    ContainerAppFilters string
    This comma-separated list of tags (in the form key:value,key:value) defines a filter that Datadog uses when collecting metrics from Azure Container Apps. Only Container Apps that match one of the defined tags are imported into Datadog. Defaults to "".
    CspmEnabled bool
    When enabled, Datadog’s Cloud Security Management product scans resource configurations monitored by this app registration. Note: This requires resourceCollectionEnabled to be set to true. Defaults to false.
    CustomMetricsEnabled bool
    Enable custom metrics for your organization. Defaults to false.
    HostFilters string
    String of host tag(s) (in the form key:value,key:value) defines a filter that Datadog will use when collecting metrics from Azure. Limit the Azure instances that are pulled into Datadog by using tags. Only hosts that match one of the defined tags are imported into Datadog. e.x. env:production,deploymentgroup:red Defaults to "".
    MetricsEnabled bool
    Enable Azure metrics for your organization. Defaults to true.
    MetricsEnabledDefault bool
    Enable Azure metrics for your organization for resource providers where no resource provider config is specified. Defaults to true.
    ResourceCollectionEnabled bool
    When enabled, Datadog collects metadata and configuration info from cloud resources (such as compute instances, databases, and load balancers) monitored by this app registration.
    ResourceProviderConfigs []IntegrationResourceProviderConfigArgs
    Configuration settings applied to resources from the specified Azure resource providers.
    SecretlessAuthEnabled bool
    (Preview) When enabled, Datadog authenticates to this app registration using federated workload identity credentials instead of a client secret. The app registration must have a Datadog federated credential for this to work. When true, clientSecret should be omitted. Defaults to false.
    UsageMetricsEnabled bool
    Enable azure.usage metrics for your organization. Defaults to true.
    client_id string
    Your Azure web application ID.
    tenant_name string
    Your Azure Active Directory ID.
    app_service_plan_filters string
    This comma-separated list of tags (in the form key:value,key:value) defines a filter that Datadog uses when collecting metrics from Azure App Service Plans. Only App Service Plans that match one of the defined tags are imported into Datadog. The rest, including the apps and functions running on them, are ignored. This also filters the metrics for any App or Function running on the App Service Plan(s). Defaults to "".
    automute bool
    Silence monitors for expected Azure VM shutdowns. Defaults to false.
    client_secret string
    Your Azure web application secret key. Required unless secretlessAuthEnabled is set to true.
    container_app_filters string
    This comma-separated list of tags (in the form key:value,key:value) defines a filter that Datadog uses when collecting metrics from Azure Container Apps. Only Container Apps that match one of the defined tags are imported into Datadog. Defaults to "".
    cspm_enabled bool
    When enabled, Datadog’s Cloud Security Management product scans resource configurations monitored by this app registration. Note: This requires resourceCollectionEnabled to be set to true. Defaults to false.
    custom_metrics_enabled bool
    Enable custom metrics for your organization. Defaults to false.
    host_filters string
    String of host tag(s) (in the form key:value,key:value) defines a filter that Datadog will use when collecting metrics from Azure. Limit the Azure instances that are pulled into Datadog by using tags. Only hosts that match one of the defined tags are imported into Datadog. e.x. env:production,deploymentgroup:red Defaults to "".
    metrics_enabled bool
    Enable Azure metrics for your organization. Defaults to true.
    metrics_enabled_default bool
    Enable Azure metrics for your organization for resource providers where no resource provider config is specified. Defaults to true.
    resource_collection_enabled bool
    When enabled, Datadog collects metadata and configuration info from cloud resources (such as compute instances, databases, and load balancers) monitored by this app registration.
    resource_provider_configs list(object)
    Configuration settings applied to resources from the specified Azure resource providers.
    secretless_auth_enabled bool
    (Preview) When enabled, Datadog authenticates to this app registration using federated workload identity credentials instead of a client secret. The app registration must have a Datadog federated credential for this to work. When true, clientSecret should be omitted. Defaults to false.
    usage_metrics_enabled bool
    Enable azure.usage metrics for your organization. Defaults to true.
    clientId String
    Your Azure web application ID.
    tenantName String
    Your Azure Active Directory ID.
    appServicePlanFilters String
    This comma-separated list of tags (in the form key:value,key:value) defines a filter that Datadog uses when collecting metrics from Azure App Service Plans. Only App Service Plans that match one of the defined tags are imported into Datadog. The rest, including the apps and functions running on them, are ignored. This also filters the metrics for any App or Function running on the App Service Plan(s). Defaults to "".
    automute Boolean
    Silence monitors for expected Azure VM shutdowns. Defaults to false.
    clientSecret String
    Your Azure web application secret key. Required unless secretlessAuthEnabled is set to true.
    containerAppFilters String
    This comma-separated list of tags (in the form key:value,key:value) defines a filter that Datadog uses when collecting metrics from Azure Container Apps. Only Container Apps that match one of the defined tags are imported into Datadog. Defaults to "".
    cspmEnabled Boolean
    When enabled, Datadog’s Cloud Security Management product scans resource configurations monitored by this app registration. Note: This requires resourceCollectionEnabled to be set to true. Defaults to false.
    customMetricsEnabled Boolean
    Enable custom metrics for your organization. Defaults to false.
    hostFilters String
    String of host tag(s) (in the form key:value,key:value) defines a filter that Datadog will use when collecting metrics from Azure. Limit the Azure instances that are pulled into Datadog by using tags. Only hosts that match one of the defined tags are imported into Datadog. e.x. env:production,deploymentgroup:red Defaults to "".
    metricsEnabled Boolean
    Enable Azure metrics for your organization. Defaults to true.
    metricsEnabledDefault Boolean
    Enable Azure metrics for your organization for resource providers where no resource provider config is specified. Defaults to true.
    resourceCollectionEnabled Boolean
    When enabled, Datadog collects metadata and configuration info from cloud resources (such as compute instances, databases, and load balancers) monitored by this app registration.
    resourceProviderConfigs List<IntegrationResourceProviderConfig>
    Configuration settings applied to resources from the specified Azure resource providers.
    secretlessAuthEnabled Boolean
    (Preview) When enabled, Datadog authenticates to this app registration using federated workload identity credentials instead of a client secret. The app registration must have a Datadog federated credential for this to work. When true, clientSecret should be omitted. Defaults to false.
    usageMetricsEnabled Boolean
    Enable azure.usage metrics for your organization. Defaults to true.
    clientId string
    Your Azure web application ID.
    tenantName string
    Your Azure Active Directory ID.
    appServicePlanFilters string
    This comma-separated list of tags (in the form key:value,key:value) defines a filter that Datadog uses when collecting metrics from Azure App Service Plans. Only App Service Plans that match one of the defined tags are imported into Datadog. The rest, including the apps and functions running on them, are ignored. This also filters the metrics for any App or Function running on the App Service Plan(s). Defaults to "".
    automute boolean
    Silence monitors for expected Azure VM shutdowns. Defaults to false.
    clientSecret string
    Your Azure web application secret key. Required unless secretlessAuthEnabled is set to true.
    containerAppFilters string
    This comma-separated list of tags (in the form key:value,key:value) defines a filter that Datadog uses when collecting metrics from Azure Container Apps. Only Container Apps that match one of the defined tags are imported into Datadog. Defaults to "".
    cspmEnabled boolean
    When enabled, Datadog’s Cloud Security Management product scans resource configurations monitored by this app registration. Note: This requires resourceCollectionEnabled to be set to true. Defaults to false.
    customMetricsEnabled boolean
    Enable custom metrics for your organization. Defaults to false.
    hostFilters string
    String of host tag(s) (in the form key:value,key:value) defines a filter that Datadog will use when collecting metrics from Azure. Limit the Azure instances that are pulled into Datadog by using tags. Only hosts that match one of the defined tags are imported into Datadog. e.x. env:production,deploymentgroup:red Defaults to "".
    metricsEnabled boolean
    Enable Azure metrics for your organization. Defaults to true.
    metricsEnabledDefault boolean
    Enable Azure metrics for your organization for resource providers where no resource provider config is specified. Defaults to true.
    resourceCollectionEnabled boolean
    When enabled, Datadog collects metadata and configuration info from cloud resources (such as compute instances, databases, and load balancers) monitored by this app registration.
    resourceProviderConfigs IntegrationResourceProviderConfig[]
    Configuration settings applied to resources from the specified Azure resource providers.
    secretlessAuthEnabled boolean
    (Preview) When enabled, Datadog authenticates to this app registration using federated workload identity credentials instead of a client secret. The app registration must have a Datadog federated credential for this to work. When true, clientSecret should be omitted. Defaults to false.
    usageMetricsEnabled boolean
    Enable azure.usage metrics for your organization. Defaults to true.
    client_id str
    Your Azure web application ID.
    tenant_name str
    Your Azure Active Directory ID.
    app_service_plan_filters str
    This comma-separated list of tags (in the form key:value,key:value) defines a filter that Datadog uses when collecting metrics from Azure App Service Plans. Only App Service Plans that match one of the defined tags are imported into Datadog. The rest, including the apps and functions running on them, are ignored. This also filters the metrics for any App or Function running on the App Service Plan(s). Defaults to "".
    automute bool
    Silence monitors for expected Azure VM shutdowns. Defaults to false.
    client_secret str
    Your Azure web application secret key. Required unless secretlessAuthEnabled is set to true.
    container_app_filters str
    This comma-separated list of tags (in the form key:value,key:value) defines a filter that Datadog uses when collecting metrics from Azure Container Apps. Only Container Apps that match one of the defined tags are imported into Datadog. Defaults to "".
    cspm_enabled bool
    When enabled, Datadog’s Cloud Security Management product scans resource configurations monitored by this app registration. Note: This requires resourceCollectionEnabled to be set to true. Defaults to false.
    custom_metrics_enabled bool
    Enable custom metrics for your organization. Defaults to false.
    host_filters str
    String of host tag(s) (in the form key:value,key:value) defines a filter that Datadog will use when collecting metrics from Azure. Limit the Azure instances that are pulled into Datadog by using tags. Only hosts that match one of the defined tags are imported into Datadog. e.x. env:production,deploymentgroup:red Defaults to "".
    metrics_enabled bool
    Enable Azure metrics for your organization. Defaults to true.
    metrics_enabled_default bool
    Enable Azure metrics for your organization for resource providers where no resource provider config is specified. Defaults to true.
    resource_collection_enabled bool
    When enabled, Datadog collects metadata and configuration info from cloud resources (such as compute instances, databases, and load balancers) monitored by this app registration.
    resource_provider_configs Sequence[IntegrationResourceProviderConfigArgs]
    Configuration settings applied to resources from the specified Azure resource providers.
    secretless_auth_enabled bool
    (Preview) When enabled, Datadog authenticates to this app registration using federated workload identity credentials instead of a client secret. The app registration must have a Datadog federated credential for this to work. When true, clientSecret should be omitted. Defaults to false.
    usage_metrics_enabled bool
    Enable azure.usage metrics for your organization. Defaults to true.
    clientId String
    Your Azure web application ID.
    tenantName String
    Your Azure Active Directory ID.
    appServicePlanFilters String
    This comma-separated list of tags (in the form key:value,key:value) defines a filter that Datadog uses when collecting metrics from Azure App Service Plans. Only App Service Plans that match one of the defined tags are imported into Datadog. The rest, including the apps and functions running on them, are ignored. This also filters the metrics for any App or Function running on the App Service Plan(s). Defaults to "".
    automute Boolean
    Silence monitors for expected Azure VM shutdowns. Defaults to false.
    clientSecret String
    Your Azure web application secret key. Required unless secretlessAuthEnabled is set to true.
    containerAppFilters String
    This comma-separated list of tags (in the form key:value,key:value) defines a filter that Datadog uses when collecting metrics from Azure Container Apps. Only Container Apps that match one of the defined tags are imported into Datadog. Defaults to "".
    cspmEnabled Boolean
    When enabled, Datadog’s Cloud Security Management product scans resource configurations monitored by this app registration. Note: This requires resourceCollectionEnabled to be set to true. Defaults to false.
    customMetricsEnabled Boolean
    Enable custom metrics for your organization. Defaults to false.
    hostFilters String
    String of host tag(s) (in the form key:value,key:value) defines a filter that Datadog will use when collecting metrics from Azure. Limit the Azure instances that are pulled into Datadog by using tags. Only hosts that match one of the defined tags are imported into Datadog. e.x. env:production,deploymentgroup:red Defaults to "".
    metricsEnabled Boolean
    Enable Azure metrics for your organization. Defaults to true.
    metricsEnabledDefault Boolean
    Enable Azure metrics for your organization for resource providers where no resource provider config is specified. Defaults to true.
    resourceCollectionEnabled Boolean
    When enabled, Datadog collects metadata and configuration info from cloud resources (such as compute instances, databases, and load balancers) monitored by this app registration.
    resourceProviderConfigs List<Property Map>
    Configuration settings applied to resources from the specified Azure resource providers.
    secretlessAuthEnabled Boolean
    (Preview) When enabled, Datadog authenticates to this app registration using federated workload identity credentials instead of a client secret. The app registration must have a Datadog federated credential for this to work. When true, clientSecret should be omitted. Defaults to false.
    usageMetricsEnabled Boolean
    Enable azure.usage metrics for your organization. Defaults to true.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Integration resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing Integration Resource

    Get an existing Integration resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: IntegrationState, opts?: CustomResourceOptions): Integration
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            app_service_plan_filters: Optional[str] = None,
            automute: Optional[bool] = None,
            client_id: Optional[str] = None,
            client_secret: Optional[str] = None,
            container_app_filters: Optional[str] = None,
            cspm_enabled: Optional[bool] = None,
            custom_metrics_enabled: Optional[bool] = None,
            host_filters: Optional[str] = None,
            metrics_enabled: Optional[bool] = None,
            metrics_enabled_default: Optional[bool] = None,
            resource_collection_enabled: Optional[bool] = None,
            resource_provider_configs: Optional[Sequence[IntegrationResourceProviderConfigArgs]] = None,
            secretless_auth_enabled: Optional[bool] = None,
            tenant_name: Optional[str] = None,
            usage_metrics_enabled: Optional[bool] = None) -> Integration
    func GetIntegration(ctx *Context, name string, id IDInput, state *IntegrationState, opts ...ResourceOption) (*Integration, error)
    public static Integration Get(string name, Input<string> id, IntegrationState? state, CustomResourceOptions? opts = null)
    public static Integration get(String name, Output<String> id, IntegrationState state, CustomResourceOptions options)
    resources:  _:    type: datadog:azure:Integration    get:      id: ${id}
    import {
      to = datadog_azure_integration.example
      id = "${id}"
    }
    
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    AppServicePlanFilters string
    This comma-separated list of tags (in the form key:value,key:value) defines a filter that Datadog uses when collecting metrics from Azure App Service Plans. Only App Service Plans that match one of the defined tags are imported into Datadog. The rest, including the apps and functions running on them, are ignored. This also filters the metrics for any App or Function running on the App Service Plan(s). Defaults to "".
    Automute bool
    Silence monitors for expected Azure VM shutdowns. Defaults to false.
    ClientId string
    Your Azure web application ID.
    ClientSecret string
    Your Azure web application secret key. Required unless secretlessAuthEnabled is set to true.
    ContainerAppFilters string
    This comma-separated list of tags (in the form key:value,key:value) defines a filter that Datadog uses when collecting metrics from Azure Container Apps. Only Container Apps that match one of the defined tags are imported into Datadog. Defaults to "".
    CspmEnabled bool
    When enabled, Datadog’s Cloud Security Management product scans resource configurations monitored by this app registration. Note: This requires resourceCollectionEnabled to be set to true. Defaults to false.
    CustomMetricsEnabled bool
    Enable custom metrics for your organization. Defaults to false.
    HostFilters string
    String of host tag(s) (in the form key:value,key:value) defines a filter that Datadog will use when collecting metrics from Azure. Limit the Azure instances that are pulled into Datadog by using tags. Only hosts that match one of the defined tags are imported into Datadog. e.x. env:production,deploymentgroup:red Defaults to "".
    MetricsEnabled bool
    Enable Azure metrics for your organization. Defaults to true.
    MetricsEnabledDefault bool
    Enable Azure metrics for your organization for resource providers where no resource provider config is specified. Defaults to true.
    ResourceCollectionEnabled bool
    When enabled, Datadog collects metadata and configuration info from cloud resources (such as compute instances, databases, and load balancers) monitored by this app registration.
    ResourceProviderConfigs List<IntegrationResourceProviderConfig>
    Configuration settings applied to resources from the specified Azure resource providers.
    SecretlessAuthEnabled bool
    (Preview) When enabled, Datadog authenticates to this app registration using federated workload identity credentials instead of a client secret. The app registration must have a Datadog federated credential for this to work. When true, clientSecret should be omitted. Defaults to false.
    TenantName string
    Your Azure Active Directory ID.
    UsageMetricsEnabled bool
    Enable azure.usage metrics for your organization. Defaults to true.
    AppServicePlanFilters string
    This comma-separated list of tags (in the form key:value,key:value) defines a filter that Datadog uses when collecting metrics from Azure App Service Plans. Only App Service Plans that match one of the defined tags are imported into Datadog. The rest, including the apps and functions running on them, are ignored. This also filters the metrics for any App or Function running on the App Service Plan(s). Defaults to "".
    Automute bool
    Silence monitors for expected Azure VM shutdowns. Defaults to false.
    ClientId string
    Your Azure web application ID.
    ClientSecret string
    Your Azure web application secret key. Required unless secretlessAuthEnabled is set to true.
    ContainerAppFilters string
    This comma-separated list of tags (in the form key:value,key:value) defines a filter that Datadog uses when collecting metrics from Azure Container Apps. Only Container Apps that match one of the defined tags are imported into Datadog. Defaults to "".
    CspmEnabled bool
    When enabled, Datadog’s Cloud Security Management product scans resource configurations monitored by this app registration. Note: This requires resourceCollectionEnabled to be set to true. Defaults to false.
    CustomMetricsEnabled bool
    Enable custom metrics for your organization. Defaults to false.
    HostFilters string
    String of host tag(s) (in the form key:value,key:value) defines a filter that Datadog will use when collecting metrics from Azure. Limit the Azure instances that are pulled into Datadog by using tags. Only hosts that match one of the defined tags are imported into Datadog. e.x. env:production,deploymentgroup:red Defaults to "".
    MetricsEnabled bool
    Enable Azure metrics for your organization. Defaults to true.
    MetricsEnabledDefault bool
    Enable Azure metrics for your organization for resource providers where no resource provider config is specified. Defaults to true.
    ResourceCollectionEnabled bool
    When enabled, Datadog collects metadata and configuration info from cloud resources (such as compute instances, databases, and load balancers) monitored by this app registration.
    ResourceProviderConfigs []IntegrationResourceProviderConfigArgs
    Configuration settings applied to resources from the specified Azure resource providers.
    SecretlessAuthEnabled bool
    (Preview) When enabled, Datadog authenticates to this app registration using federated workload identity credentials instead of a client secret. The app registration must have a Datadog federated credential for this to work. When true, clientSecret should be omitted. Defaults to false.
    TenantName string
    Your Azure Active Directory ID.
    UsageMetricsEnabled bool
    Enable azure.usage metrics for your organization. Defaults to true.
    app_service_plan_filters string
    This comma-separated list of tags (in the form key:value,key:value) defines a filter that Datadog uses when collecting metrics from Azure App Service Plans. Only App Service Plans that match one of the defined tags are imported into Datadog. The rest, including the apps and functions running on them, are ignored. This also filters the metrics for any App or Function running on the App Service Plan(s). Defaults to "".
    automute bool
    Silence monitors for expected Azure VM shutdowns. Defaults to false.
    client_id string
    Your Azure web application ID.
    client_secret string
    Your Azure web application secret key. Required unless secretlessAuthEnabled is set to true.
    container_app_filters string
    This comma-separated list of tags (in the form key:value,key:value) defines a filter that Datadog uses when collecting metrics from Azure Container Apps. Only Container Apps that match one of the defined tags are imported into Datadog. Defaults to "".
    cspm_enabled bool
    When enabled, Datadog’s Cloud Security Management product scans resource configurations monitored by this app registration. Note: This requires resourceCollectionEnabled to be set to true. Defaults to false.
    custom_metrics_enabled bool
    Enable custom metrics for your organization. Defaults to false.
    host_filters string
    String of host tag(s) (in the form key:value,key:value) defines a filter that Datadog will use when collecting metrics from Azure. Limit the Azure instances that are pulled into Datadog by using tags. Only hosts that match one of the defined tags are imported into Datadog. e.x. env:production,deploymentgroup:red Defaults to "".
    metrics_enabled bool
    Enable Azure metrics for your organization. Defaults to true.
    metrics_enabled_default bool
    Enable Azure metrics for your organization for resource providers where no resource provider config is specified. Defaults to true.
    resource_collection_enabled bool
    When enabled, Datadog collects metadata and configuration info from cloud resources (such as compute instances, databases, and load balancers) monitored by this app registration.
    resource_provider_configs list(object)
    Configuration settings applied to resources from the specified Azure resource providers.
    secretless_auth_enabled bool
    (Preview) When enabled, Datadog authenticates to this app registration using federated workload identity credentials instead of a client secret. The app registration must have a Datadog federated credential for this to work. When true, clientSecret should be omitted. Defaults to false.
    tenant_name string
    Your Azure Active Directory ID.
    usage_metrics_enabled bool
    Enable azure.usage metrics for your organization. Defaults to true.
    appServicePlanFilters String
    This comma-separated list of tags (in the form key:value,key:value) defines a filter that Datadog uses when collecting metrics from Azure App Service Plans. Only App Service Plans that match one of the defined tags are imported into Datadog. The rest, including the apps and functions running on them, are ignored. This also filters the metrics for any App or Function running on the App Service Plan(s). Defaults to "".
    automute Boolean
    Silence monitors for expected Azure VM shutdowns. Defaults to false.
    clientId String
    Your Azure web application ID.
    clientSecret String
    Your Azure web application secret key. Required unless secretlessAuthEnabled is set to true.
    containerAppFilters String
    This comma-separated list of tags (in the form key:value,key:value) defines a filter that Datadog uses when collecting metrics from Azure Container Apps. Only Container Apps that match one of the defined tags are imported into Datadog. Defaults to "".
    cspmEnabled Boolean
    When enabled, Datadog’s Cloud Security Management product scans resource configurations monitored by this app registration. Note: This requires resourceCollectionEnabled to be set to true. Defaults to false.
    customMetricsEnabled Boolean
    Enable custom metrics for your organization. Defaults to false.
    hostFilters String
    String of host tag(s) (in the form key:value,key:value) defines a filter that Datadog will use when collecting metrics from Azure. Limit the Azure instances that are pulled into Datadog by using tags. Only hosts that match one of the defined tags are imported into Datadog. e.x. env:production,deploymentgroup:red Defaults to "".
    metricsEnabled Boolean
    Enable Azure metrics for your organization. Defaults to true.
    metricsEnabledDefault Boolean
    Enable Azure metrics for your organization for resource providers where no resource provider config is specified. Defaults to true.
    resourceCollectionEnabled Boolean
    When enabled, Datadog collects metadata and configuration info from cloud resources (such as compute instances, databases, and load balancers) monitored by this app registration.
    resourceProviderConfigs List<IntegrationResourceProviderConfig>
    Configuration settings applied to resources from the specified Azure resource providers.
    secretlessAuthEnabled Boolean
    (Preview) When enabled, Datadog authenticates to this app registration using federated workload identity credentials instead of a client secret. The app registration must have a Datadog federated credential for this to work. When true, clientSecret should be omitted. Defaults to false.
    tenantName String
    Your Azure Active Directory ID.
    usageMetricsEnabled Boolean
    Enable azure.usage metrics for your organization. Defaults to true.
    appServicePlanFilters string
    This comma-separated list of tags (in the form key:value,key:value) defines a filter that Datadog uses when collecting metrics from Azure App Service Plans. Only App Service Plans that match one of the defined tags are imported into Datadog. The rest, including the apps and functions running on them, are ignored. This also filters the metrics for any App or Function running on the App Service Plan(s). Defaults to "".
    automute boolean
    Silence monitors for expected Azure VM shutdowns. Defaults to false.
    clientId string
    Your Azure web application ID.
    clientSecret string
    Your Azure web application secret key. Required unless secretlessAuthEnabled is set to true.
    containerAppFilters string
    This comma-separated list of tags (in the form key:value,key:value) defines a filter that Datadog uses when collecting metrics from Azure Container Apps. Only Container Apps that match one of the defined tags are imported into Datadog. Defaults to "".
    cspmEnabled boolean
    When enabled, Datadog’s Cloud Security Management product scans resource configurations monitored by this app registration. Note: This requires resourceCollectionEnabled to be set to true. Defaults to false.
    customMetricsEnabled boolean
    Enable custom metrics for your organization. Defaults to false.
    hostFilters string
    String of host tag(s) (in the form key:value,key:value) defines a filter that Datadog will use when collecting metrics from Azure. Limit the Azure instances that are pulled into Datadog by using tags. Only hosts that match one of the defined tags are imported into Datadog. e.x. env:production,deploymentgroup:red Defaults to "".
    metricsEnabled boolean
    Enable Azure metrics for your organization. Defaults to true.
    metricsEnabledDefault boolean
    Enable Azure metrics for your organization for resource providers where no resource provider config is specified. Defaults to true.
    resourceCollectionEnabled boolean
    When enabled, Datadog collects metadata and configuration info from cloud resources (such as compute instances, databases, and load balancers) monitored by this app registration.
    resourceProviderConfigs IntegrationResourceProviderConfig[]
    Configuration settings applied to resources from the specified Azure resource providers.
    secretlessAuthEnabled boolean
    (Preview) When enabled, Datadog authenticates to this app registration using federated workload identity credentials instead of a client secret. The app registration must have a Datadog federated credential for this to work. When true, clientSecret should be omitted. Defaults to false.
    tenantName string
    Your Azure Active Directory ID.
    usageMetricsEnabled boolean
    Enable azure.usage metrics for your organization. Defaults to true.
    app_service_plan_filters str
    This comma-separated list of tags (in the form key:value,key:value) defines a filter that Datadog uses when collecting metrics from Azure App Service Plans. Only App Service Plans that match one of the defined tags are imported into Datadog. The rest, including the apps and functions running on them, are ignored. This also filters the metrics for any App or Function running on the App Service Plan(s). Defaults to "".
    automute bool
    Silence monitors for expected Azure VM shutdowns. Defaults to false.
    client_id str
    Your Azure web application ID.
    client_secret str
    Your Azure web application secret key. Required unless secretlessAuthEnabled is set to true.
    container_app_filters str
    This comma-separated list of tags (in the form key:value,key:value) defines a filter that Datadog uses when collecting metrics from Azure Container Apps. Only Container Apps that match one of the defined tags are imported into Datadog. Defaults to "".
    cspm_enabled bool
    When enabled, Datadog’s Cloud Security Management product scans resource configurations monitored by this app registration. Note: This requires resourceCollectionEnabled to be set to true. Defaults to false.
    custom_metrics_enabled bool
    Enable custom metrics for your organization. Defaults to false.
    host_filters str
    String of host tag(s) (in the form key:value,key:value) defines a filter that Datadog will use when collecting metrics from Azure. Limit the Azure instances that are pulled into Datadog by using tags. Only hosts that match one of the defined tags are imported into Datadog. e.x. env:production,deploymentgroup:red Defaults to "".
    metrics_enabled bool
    Enable Azure metrics for your organization. Defaults to true.
    metrics_enabled_default bool
    Enable Azure metrics for your organization for resource providers where no resource provider config is specified. Defaults to true.
    resource_collection_enabled bool
    When enabled, Datadog collects metadata and configuration info from cloud resources (such as compute instances, databases, and load balancers) monitored by this app registration.
    resource_provider_configs Sequence[IntegrationResourceProviderConfigArgs]
    Configuration settings applied to resources from the specified Azure resource providers.
    secretless_auth_enabled bool
    (Preview) When enabled, Datadog authenticates to this app registration using federated workload identity credentials instead of a client secret. The app registration must have a Datadog federated credential for this to work. When true, clientSecret should be omitted. Defaults to false.
    tenant_name str
    Your Azure Active Directory ID.
    usage_metrics_enabled bool
    Enable azure.usage metrics for your organization. Defaults to true.
    appServicePlanFilters String
    This comma-separated list of tags (in the form key:value,key:value) defines a filter that Datadog uses when collecting metrics from Azure App Service Plans. Only App Service Plans that match one of the defined tags are imported into Datadog. The rest, including the apps and functions running on them, are ignored. This also filters the metrics for any App or Function running on the App Service Plan(s). Defaults to "".
    automute Boolean
    Silence monitors for expected Azure VM shutdowns. Defaults to false.
    clientId String
    Your Azure web application ID.
    clientSecret String
    Your Azure web application secret key. Required unless secretlessAuthEnabled is set to true.
    containerAppFilters String
    This comma-separated list of tags (in the form key:value,key:value) defines a filter that Datadog uses when collecting metrics from Azure Container Apps. Only Container Apps that match one of the defined tags are imported into Datadog. Defaults to "".
    cspmEnabled Boolean
    When enabled, Datadog’s Cloud Security Management product scans resource configurations monitored by this app registration. Note: This requires resourceCollectionEnabled to be set to true. Defaults to false.
    customMetricsEnabled Boolean
    Enable custom metrics for your organization. Defaults to false.
    hostFilters String
    String of host tag(s) (in the form key:value,key:value) defines a filter that Datadog will use when collecting metrics from Azure. Limit the Azure instances that are pulled into Datadog by using tags. Only hosts that match one of the defined tags are imported into Datadog. e.x. env:production,deploymentgroup:red Defaults to "".
    metricsEnabled Boolean
    Enable Azure metrics for your organization. Defaults to true.
    metricsEnabledDefault Boolean
    Enable Azure metrics for your organization for resource providers where no resource provider config is specified. Defaults to true.
    resourceCollectionEnabled Boolean
    When enabled, Datadog collects metadata and configuration info from cloud resources (such as compute instances, databases, and load balancers) monitored by this app registration.
    resourceProviderConfigs List<Property Map>
    Configuration settings applied to resources from the specified Azure resource providers.
    secretlessAuthEnabled Boolean
    (Preview) When enabled, Datadog authenticates to this app registration using federated workload identity credentials instead of a client secret. The app registration must have a Datadog federated credential for this to work. When true, clientSecret should be omitted. Defaults to false.
    tenantName String
    Your Azure Active Directory ID.
    usageMetricsEnabled Boolean
    Enable azure.usage metrics for your organization. Defaults to true.

    Supporting Types

    IntegrationResourceProviderConfig, IntegrationResourceProviderConfigArgs

    Import

    The pulumi import command can be used, for example:

    Microsoft Azure integrations can be imported using their tenant name and client id separated with a colon (:). The clientSecret should be passed by setting the environment variable CLIENT_SECRET

    $ pulumi import datadog:azure/integration:Integration sandbox ${tenant_name}:${client_id}
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Datadog pulumi/pulumi-datadog
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the datadog Terraform Provider.
    datadog logo
    Viewing docs for Datadog v5.2.0
    published on Thursday, May 21, 2026 by Pulumi

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial