1. Packages
  2. Datadog
  3. API Docs
  4. azure
  5. Integration
Datadog v4.27.0 published on Thursday, Mar 14, 2024 by Pulumi

datadog.azure.Integration

Explore with Pulumi AI

datadog logo
Datadog v4.27.0 published on Thursday, Mar 14, 2024 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
    const sandbox = new datadog.azure.Integration("sandbox", {
        appServicePlanFilters: "examplefilter:true,example:another",
        automute: true,
        clientId: "<azure_client_id>",
        clientSecret: "<azure_client_secret_key>",
        containerAppFilters: "examplefilter:true,example:one_more",
        cspmEnabled: true,
        customMetricsEnabled: false,
        hostFilters: "examplefilter:true,example:true",
        tenantName: "<azure_tenant_name>",
    });
    
    import pulumi
    import pulumi_datadog as datadog
    
    # Create a new Datadog - Microsoft Azure integration
    sandbox = datadog.azure.Integration("sandbox",
        app_service_plan_filters="examplefilter:true,example:another",
        automute=True,
        client_id="<azure_client_id>",
        client_secret="<azure_client_secret_key>",
        container_app_filters="examplefilter:true,example:one_more",
        cspm_enabled=True,
        custom_metrics_enabled=False,
        host_filters="examplefilter:true,example:true",
        tenant_name="<azure_tenant_name>")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-datadog/sdk/v4/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
    		_, err := azure.NewIntegration(ctx, "sandbox", &azure.IntegrationArgs{
    			AppServicePlanFilters: pulumi.String("examplefilter:true,example:another"),
    			Automute:              pulumi.Bool(true),
    			ClientId:              pulumi.String("<azure_client_id>"),
    			ClientSecret:          pulumi.String("<azure_client_secret_key>"),
    			ContainerAppFilters:   pulumi.String("examplefilter:true,example:one_more"),
    			CspmEnabled:           pulumi.Bool(true),
    			CustomMetricsEnabled:  pulumi.Bool(false),
    			HostFilters:           pulumi.String("examplefilter:true,example:true"),
    			TenantName:            pulumi.String("<azure_tenant_name>"),
    		})
    		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
        var sandbox = new Datadog.Azure.Integration("sandbox", new()
        {
            AppServicePlanFilters = "examplefilter:true,example:another",
            Automute = true,
            ClientId = "<azure_client_id>",
            ClientSecret = "<azure_client_secret_key>",
            ContainerAppFilters = "examplefilter:true,example:one_more",
            CspmEnabled = true,
            CustomMetricsEnabled = false,
            HostFilters = "examplefilter:true,example:true",
            TenantName = "<azure_tenant_name>",
        });
    
    });
    
    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.List;
    import java.util.ArrayList;
    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) {
            var sandbox = new Integration("sandbox", IntegrationArgs.builder()        
                .appServicePlanFilters("examplefilter:true,example:another")
                .automute(true)
                .clientId("<azure_client_id>")
                .clientSecret("<azure_client_secret_key>")
                .containerAppFilters("examplefilter:true,example:one_more")
                .cspmEnabled(true)
                .customMetricsEnabled(false)
                .hostFilters("examplefilter:true,example:true")
                .tenantName("<azure_tenant_name>")
                .build());
    
        }
    }
    
    resources:
      # Create a new Datadog - Microsoft Azure integration
      sandbox:
        type: datadog:azure:Integration
        properties:
          appServicePlanFilters: examplefilter:true,example:another
          automute: true
          clientId: <azure_client_id>
          clientSecret: <azure_client_secret_key>
          containerAppFilters: examplefilter:true,example:one_more
          cspmEnabled: true
          customMetricsEnabled: false
          hostFilters: examplefilter:true,example:true
          tenantName: <azure_tenant_name>
    

    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,
                    client_secret: Optional[str] = None,
                    tenant_name: Optional[str] = None,
                    app_service_plan_filters: Optional[str] = None,
                    automute: Optional[bool] = None,
                    container_app_filters: Optional[str] = None,
                    cspm_enabled: Optional[bool] = None,
                    custom_metrics_enabled: Optional[bool] = None,
                    host_filters: Optional[str] = None,
                    resource_collection_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.
    
    

    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.

    Example

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

    var datadogIntegrationResource = new Datadog.Azure.Integration("datadogIntegrationResource", new()
    {
        ClientId = "string",
        ClientSecret = "string",
        TenantName = "string",
        AppServicePlanFilters = "string",
        Automute = false,
        ContainerAppFilters = "string",
        CspmEnabled = false,
        CustomMetricsEnabled = false,
        HostFilters = "string",
        ResourceCollectionEnabled = false,
    });
    
    example, err := azure.NewIntegration(ctx, "datadogIntegrationResource", &azure.IntegrationArgs{
    	ClientId:                  pulumi.String("string"),
    	ClientSecret:              pulumi.String("string"),
    	TenantName:                pulumi.String("string"),
    	AppServicePlanFilters:     pulumi.String("string"),
    	Automute:                  pulumi.Bool(false),
    	ContainerAppFilters:       pulumi.String("string"),
    	CspmEnabled:               pulumi.Bool(false),
    	CustomMetricsEnabled:      pulumi.Bool(false),
    	HostFilters:               pulumi.String("string"),
    	ResourceCollectionEnabled: pulumi.Bool(false),
    })
    
    var datadogIntegrationResource = new Integration("datadogIntegrationResource", IntegrationArgs.builder()        
        .clientId("string")
        .clientSecret("string")
        .tenantName("string")
        .appServicePlanFilters("string")
        .automute(false)
        .containerAppFilters("string")
        .cspmEnabled(false)
        .customMetricsEnabled(false)
        .hostFilters("string")
        .resourceCollectionEnabled(false)
        .build());
    
    datadog_integration_resource = datadog.azure.Integration("datadogIntegrationResource",
        client_id="string",
        client_secret="string",
        tenant_name="string",
        app_service_plan_filters="string",
        automute=False,
        container_app_filters="string",
        cspm_enabled=False,
        custom_metrics_enabled=False,
        host_filters="string",
        resource_collection_enabled=False)
    
    const datadogIntegrationResource = new datadog.azure.Integration("datadogIntegrationResource", {
        clientId: "string",
        clientSecret: "string",
        tenantName: "string",
        appServicePlanFilters: "string",
        automute: false,
        containerAppFilters: "string",
        cspmEnabled: false,
        customMetricsEnabled: false,
        hostFilters: "string",
        resourceCollectionEnabled: false,
    });
    
    type: datadog:azure:Integration
    properties:
        appServicePlanFilters: string
        automute: false
        clientId: string
        clientSecret: string
        containerAppFilters: string
        cspmEnabled: false
        customMetricsEnabled: false
        hostFilters: string
        resourceCollectionEnabled: false
        tenantName: string
    

    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

    The Integration resource accepts the following input properties:

    ClientId string
    Your Azure web application ID.
    ClientSecret string
    (Required for Initial Creation) Your Azure web application secret key.
    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.
    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 resource_collection_enabled 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 "".
    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.
    ClientId string
    Your Azure web application ID.
    ClientSecret string
    (Required for Initial Creation) Your Azure web application secret key.
    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.
    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 resource_collection_enabled 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 "".
    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.
    clientId String
    Your Azure web application ID.
    clientSecret String
    (Required for Initial Creation) Your Azure web application secret key.
    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.
    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 resource_collection_enabled 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 "".
    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.
    clientId string
    Your Azure web application ID.
    clientSecret string
    (Required for Initial Creation) Your Azure web application secret key.
    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.
    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 resource_collection_enabled 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 "".
    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.
    client_id str
    Your Azure web application ID.
    client_secret str
    (Required for Initial Creation) Your Azure web application secret key.
    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.
    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 resource_collection_enabled 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 "".
    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.
    clientId String
    Your Azure web application ID.
    clientSecret String
    (Required for Initial Creation) Your Azure web application secret key.
    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.
    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 resource_collection_enabled 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 "".
    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.

    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 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,
            resource_collection_enabled: Optional[bool] = None,
            tenant_name: Optional[str] = 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)
    Resource lookup is not supported in YAML
    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
    (Required for Initial Creation) Your Azure web application secret key.
    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 resource_collection_enabled 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 "".
    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.
    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.
    ClientId string
    Your Azure web application ID.
    ClientSecret string
    (Required for Initial Creation) Your Azure web application secret key.
    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 resource_collection_enabled 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 "".
    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.
    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.
    clientId String
    Your Azure web application ID.
    clientSecret String
    (Required for Initial Creation) Your Azure web application secret key.
    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 resource_collection_enabled 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 "".
    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.
    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.
    clientId string
    Your Azure web application ID.
    clientSecret string
    (Required for Initial Creation) Your Azure web application secret key.
    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 resource_collection_enabled 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 "".
    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.
    tenantName string
    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_id str
    Your Azure web application ID.
    client_secret str
    (Required for Initial Creation) Your Azure web application secret key.
    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 resource_collection_enabled 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 "".
    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.
    tenant_name str
    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.
    clientId String
    Your Azure web application ID.
    clientSecret String
    (Required for Initial Creation) Your Azure web application secret key.
    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 resource_collection_enabled 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 "".
    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.
    tenantName String
    Your Azure Active Directory ID.

    Import

    Microsoft Azure integrations can be imported using their tenant name and client id separated with a colon (:).

    $ 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
    Datadog v4.27.0 published on Thursday, Mar 14, 2024 by Pulumi