datadog.azure.Integration
Explore with Pulumi AI
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", {
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,
});
import pulumi
import pulumi_datadog as datadog
# Create a new Datadog - Microsoft Azure integration
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)
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{
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
}
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()
{
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,
});
});
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) {
// Create a new Datadog - Microsoft Azure integration
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());
}
}
resources:
# Create a new Datadog - Microsoft Azure integration
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
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.
Constructor 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
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:
- Client
Id string - Your Azure web application ID.
- Client
Secret string - (Required for Initial Creation) Your Azure web application secret key.
- Tenant
Name string - Your Azure Active Directory ID.
- App
Service stringPlan Filters - 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 stringFilters - 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 tofalse
. - Custom
Metrics boolEnabled - 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""
. - Resource
Collection boolEnabled - 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 string - Your Azure web application ID.
- Client
Secret string - (Required for Initial Creation) Your Azure web application secret key.
- Tenant
Name string - Your Azure Active Directory ID.
- App
Service stringPlan Filters - 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 stringFilters - 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 tofalse
. - Custom
Metrics boolEnabled - 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""
. - Resource
Collection boolEnabled - 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 String - Your Azure web application ID.
- client
Secret String - (Required for Initial Creation) Your Azure web application secret key.
- tenant
Name String - Your Azure Active Directory ID.
- app
Service StringPlan Filters - 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
. - container
App StringFilters - 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 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 tofalse
. - custom
Metrics BooleanEnabled - 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""
. - resource
Collection BooleanEnabled - 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 string - Your Azure web application ID.
- client
Secret string - (Required for Initial Creation) Your Azure web application secret key.
- tenant
Name string - Your Azure Active Directory ID.
- app
Service stringPlan Filters - 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
. - container
App stringFilters - 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 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 tofalse
. - custom
Metrics booleanEnabled - 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""
. - resource
Collection booleanEnabled - 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_ strplan_ filters - 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_ strfilters - 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 tofalse
. - custom_
metrics_ boolenabled - 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_ boolenabled - 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 String - Your Azure web application ID.
- client
Secret String - (Required for Initial Creation) Your Azure web application secret key.
- tenant
Name String - Your Azure Active Directory ID.
- app
Service StringPlan Filters - 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
. - container
App StringFilters - 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 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 tofalse
. - custom
Metrics BooleanEnabled - 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""
. - resource
Collection BooleanEnabled - 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.
- App
Service stringPlan Filters - 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 - (Required for Initial Creation) Your Azure web application secret key.
- Container
App stringFilters - 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 tofalse
. - Custom
Metrics boolEnabled - 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""
. - Resource
Collection boolEnabled - 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 string - Your Azure Active Directory ID.
- App
Service stringPlan Filters - 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 - (Required for Initial Creation) Your Azure web application secret key.
- Container
App stringFilters - 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 tofalse
. - Custom
Metrics boolEnabled - 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""
. - Resource
Collection boolEnabled - 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 string - Your Azure Active Directory ID.
- app
Service StringPlan Filters - 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
. - client
Id String - Your Azure web application ID.
- client
Secret String - (Required for Initial Creation) Your Azure web application secret key.
- container
App StringFilters - 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 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 tofalse
. - custom
Metrics BooleanEnabled - 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""
. - resource
Collection BooleanEnabled - 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 String - Your Azure Active Directory ID.
- app
Service stringPlan Filters - 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
. - client
Id string - Your Azure web application ID.
- client
Secret string - (Required for Initial Creation) Your Azure web application secret key.
- container
App stringFilters - 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 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 tofalse
. - custom
Metrics booleanEnabled - 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""
. - resource
Collection booleanEnabled - 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 string - Your Azure Active Directory ID.
- app_
service_ strplan_ filters - 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_ strfilters - 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 tofalse
. - custom_
metrics_ boolenabled - 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_ boolenabled - 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.
- app
Service StringPlan Filters - 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
. - client
Id String - Your Azure web application ID.
- client
Secret String - (Required for Initial Creation) Your Azure web application secret key.
- container
App StringFilters - 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 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 tofalse
. - custom
Metrics BooleanEnabled - 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""
. - resource
Collection BooleanEnabled - 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 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.