published on Thursday, May 21, 2026 by Pulumi
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:
- Client
Id string - Your Azure web application ID.
- 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
Secret string - Your Azure web application secret key. Required unless
secretlessAuthEnabledis set totrue. - 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
resourceCollectionEnabledto 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:redDefaults to"". - Metrics
Enabled bool - Enable Azure metrics for your organization. Defaults to
true. - Metrics
Enabled boolDefault - Enable Azure metrics for your organization for resource providers where no resource provider config is specified. Defaults to
true. - 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.
- Resource
Provider List<IntegrationConfigs Resource Provider Config> - Configuration settings applied to resources from the specified Azure resource providers.
- Secretless
Auth boolEnabled - (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,clientSecretshould be omitted. Defaults tofalse. - Usage
Metrics boolEnabled - 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 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
Secret string - Your Azure web application secret key. Required unless
secretlessAuthEnabledis set totrue. - 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
resourceCollectionEnabledto 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:redDefaults to"". - Metrics
Enabled bool - Enable Azure metrics for your organization. Defaults to
true. - Metrics
Enabled boolDefault - Enable Azure metrics for your organization for resource providers where no resource provider config is specified. Defaults to
true. - 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.
- Resource
Provider []IntegrationConfigs Resource Provider Config Args - Configuration settings applied to resources from the specified Azure resource providers.
- Secretless
Auth boolEnabled - (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,clientSecretshould be omitted. Defaults tofalse. - Usage
Metrics boolEnabled - 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_ 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_
secret string - Your Azure web application secret key. Required unless
secretlessAuthEnabledis set totrue. - 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
resourceCollectionEnabledto 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:redDefaults to"". - metrics_
enabled bool - Enable Azure metrics for your organization. Defaults to
true. - metrics_
enabled_ booldefault - Enable Azure metrics for your organization for resource providers where no resource provider config is specified. Defaults to
true. - 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.
- resource_
provider_ list(object)configs - Configuration settings applied to resources from the specified Azure resource providers.
- secretless_
auth_ boolenabled - (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,clientSecretshould be omitted. Defaults tofalse. - usage_
metrics_ boolenabled - 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 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
Secret String - Your Azure web application secret key. Required unless
secretlessAuthEnabledis set totrue. - 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
resourceCollectionEnabledto 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:redDefaults to"". - metrics
Enabled Boolean - Enable Azure metrics for your organization. Defaults to
true. - metrics
Enabled BooleanDefault - Enable Azure metrics for your organization for resource providers where no resource provider config is specified. Defaults to
true. - 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.
- resource
Provider List<IntegrationConfigs Resource Provider Config> - Configuration settings applied to resources from the specified Azure resource providers.
- secretless
Auth BooleanEnabled - (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,clientSecretshould be omitted. Defaults tofalse. - usage
Metrics BooleanEnabled - 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 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
Secret string - Your Azure web application secret key. Required unless
secretlessAuthEnabledis set totrue. - 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
resourceCollectionEnabledto 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:redDefaults to"". - metrics
Enabled boolean - Enable Azure metrics for your organization. Defaults to
true. - metrics
Enabled booleanDefault - Enable Azure metrics for your organization for resource providers where no resource provider config is specified. Defaults to
true. - 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.
- resource
Provider IntegrationConfigs Resource Provider Config[] - Configuration settings applied to resources from the specified Azure resource providers.
- secretless
Auth booleanEnabled - (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,clientSecretshould be omitted. Defaults tofalse. - usage
Metrics booleanEnabled - 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_ 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_
secret str - Your Azure web application secret key. Required unless
secretlessAuthEnabledis set totrue. - 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
resourceCollectionEnabledto 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:redDefaults to"". - metrics_
enabled bool - Enable Azure metrics for your organization. Defaults to
true. - metrics_
enabled_ booldefault - Enable Azure metrics for your organization for resource providers where no resource provider config is specified. Defaults to
true. - 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.
- resource_
provider_ Sequence[Integrationconfigs Resource Provider Config Args] - Configuration settings applied to resources from the specified Azure resource providers.
- secretless_
auth_ boolenabled - (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,clientSecretshould be omitted. Defaults tofalse. - usage_
metrics_ boolenabled - 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 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
Secret String - Your Azure web application secret key. Required unless
secretlessAuthEnabledis set totrue. - 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
resourceCollectionEnabledto 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:redDefaults to"". - metrics
Enabled Boolean - Enable Azure metrics for your organization. Defaults to
true. - metrics
Enabled BooleanDefault - Enable Azure metrics for your organization for resource providers where no resource provider config is specified. Defaults to
true. - 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.
- resource
Provider List<Property Map>Configs - Configuration settings applied to resources from the specified Azure resource providers.
- secretless
Auth BooleanEnabled - (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,clientSecretshould be omitted. Defaults tofalse. - usage
Metrics BooleanEnabled - 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) -> Integrationfunc 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.
- 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 - Your Azure web application secret key. Required unless
secretlessAuthEnabledis set totrue. - 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
resourceCollectionEnabledto 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:redDefaults to"". - Metrics
Enabled bool - Enable Azure metrics for your organization. Defaults to
true. - Metrics
Enabled boolDefault - Enable Azure metrics for your organization for resource providers where no resource provider config is specified. Defaults to
true. - 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.
- Resource
Provider List<IntegrationConfigs Resource Provider Config> - Configuration settings applied to resources from the specified Azure resource providers.
- Secretless
Auth boolEnabled - (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,clientSecretshould be omitted. Defaults tofalse. - Tenant
Name string - Your Azure Active Directory ID.
- Usage
Metrics boolEnabled - Enable azure.usage metrics for your organization. Defaults to
true.
- 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 - Your Azure web application secret key. Required unless
secretlessAuthEnabledis set totrue. - 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
resourceCollectionEnabledto 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:redDefaults to"". - Metrics
Enabled bool - Enable Azure metrics for your organization. Defaults to
true. - Metrics
Enabled boolDefault - Enable Azure metrics for your organization for resource providers where no resource provider config is specified. Defaults to
true. - 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.
- Resource
Provider []IntegrationConfigs Resource Provider Config Args - Configuration settings applied to resources from the specified Azure resource providers.
- Secretless
Auth boolEnabled - (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,clientSecretshould be omitted. Defaults tofalse. - Tenant
Name string - Your Azure Active Directory ID.
- Usage
Metrics boolEnabled - Enable azure.usage metrics for your organization. Defaults to
true.
- 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 - Your Azure web application secret key. Required unless
secretlessAuthEnabledis set totrue. - 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
resourceCollectionEnabledto 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:redDefaults to"". - metrics_
enabled bool - Enable Azure metrics for your organization. Defaults to
true. - metrics_
enabled_ booldefault - Enable Azure metrics for your organization for resource providers where no resource provider config is specified. Defaults to
true. - 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.
- resource_
provider_ list(object)configs - Configuration settings applied to resources from the specified Azure resource providers.
- secretless_
auth_ boolenabled - (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,clientSecretshould be omitted. Defaults tofalse. - tenant_
name string - Your Azure Active Directory ID.
- usage_
metrics_ boolenabled - Enable azure.usage metrics for your organization. Defaults to
true.
- 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 - Your Azure web application secret key. Required unless
secretlessAuthEnabledis set totrue. - 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
resourceCollectionEnabledto 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:redDefaults to"". - metrics
Enabled Boolean - Enable Azure metrics for your organization. Defaults to
true. - metrics
Enabled BooleanDefault - Enable Azure metrics for your organization for resource providers where no resource provider config is specified. Defaults to
true. - 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.
- resource
Provider List<IntegrationConfigs Resource Provider Config> - Configuration settings applied to resources from the specified Azure resource providers.
- secretless
Auth BooleanEnabled - (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,clientSecretshould be omitted. Defaults tofalse. - tenant
Name String - Your Azure Active Directory ID.
- usage
Metrics BooleanEnabled - Enable azure.usage metrics for your organization. Defaults to
true.
- 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 - Your Azure web application secret key. Required unless
secretlessAuthEnabledis set totrue. - 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
resourceCollectionEnabledto 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:redDefaults to"". - metrics
Enabled boolean - Enable Azure metrics for your organization. Defaults to
true. - metrics
Enabled booleanDefault - Enable Azure metrics for your organization for resource providers where no resource provider config is specified. Defaults to
true. - 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.
- resource
Provider IntegrationConfigs Resource Provider Config[] - Configuration settings applied to resources from the specified Azure resource providers.
- secretless
Auth booleanEnabled - (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,clientSecretshould be omitted. Defaults tofalse. - tenant
Name string - Your Azure Active Directory ID.
- usage
Metrics booleanEnabled - Enable azure.usage metrics for your organization. Defaults to
true.
- 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 - Your Azure web application secret key. Required unless
secretlessAuthEnabledis set totrue. - 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
resourceCollectionEnabledto 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:redDefaults to"". - metrics_
enabled bool - Enable Azure metrics for your organization. Defaults to
true. - metrics_
enabled_ booldefault - Enable Azure metrics for your organization for resource providers where no resource provider config is specified. Defaults to
true. - 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.
- resource_
provider_ Sequence[Integrationconfigs Resource Provider Config Args] - Configuration settings applied to resources from the specified Azure resource providers.
- secretless_
auth_ boolenabled - (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,clientSecretshould be omitted. Defaults tofalse. - tenant_
name str - Your Azure Active Directory ID.
- usage_
metrics_ boolenabled - Enable azure.usage metrics for your organization. Defaults to
true.
- 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 - Your Azure web application secret key. Required unless
secretlessAuthEnabledis set totrue. - 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
resourceCollectionEnabledto 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:redDefaults to"". - metrics
Enabled Boolean - Enable Azure metrics for your organization. Defaults to
true. - metrics
Enabled BooleanDefault - Enable Azure metrics for your organization for resource providers where no resource provider config is specified. Defaults to
true. - 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.
- resource
Provider List<Property Map>Configs - Configuration settings applied to resources from the specified Azure resource providers.
- secretless
Auth BooleanEnabled - (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,clientSecretshould be omitted. Defaults tofalse. - tenant
Name String - Your Azure Active Directory ID.
- usage
Metrics BooleanEnabled - Enable azure.usage metrics for your organization. Defaults to
true.
Supporting Types
IntegrationResourceProviderConfig, IntegrationResourceProviderConfigArgs
- Metrics
Enabled bool - Namespace string
- Metrics
Enabled bool - Namespace string
- metrics_
enabled bool - namespace string
- metrics
Enabled Boolean - namespace String
- metrics
Enabled boolean - namespace string
- metrics_
enabled bool - namespace str
- metrics
Enabled Boolean - namespace String
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
datadogTerraform Provider.
published on Thursday, May 21, 2026 by Pulumi