Viewing docs for Datadog v5.1.0
published on Thursday, Apr 2, 2026 by Pulumi
published on Thursday, Apr 2, 2026 by Pulumi
Datadog Provider: Installation & Configuration
I want to use the Pulumi Datadog package (datadog) in my project.
## Provider details
- Package: datadog
- Version: v5.1.0
- Publisher: Pulumi
- Source: pulumi
- Repository: https://github.com/pulumi/pulumi-datadog
## Documentation
The Pulumi Cloud Registry API serves canonical, up-to-date docs for this package — including private packages and every published version. Send the "Accept: text/markdown" header for clean readable content, or "application/json" for structured data.
Start at the navigation tree, which cross-links to the readme, installation guide, and per-resource docs URL template:
- https://api.pulumi.com/api/registry/packages/pulumi/pulumi/datadog/versions/latest/nav
Returns a summary by default. The full tree can be hundreds of kB for large providers, so prefer targeted search: append "?q=<query>&depth=full" to filter by resource/function title or token (for example "?q=bucket&depth=full"). Only request the full nav without a query if you actually need to enumerate every resource.
Other endpoints:
- Overview and getting started: https://api.pulumi.com/api/registry/packages/pulumi/pulumi/datadog/versions/latest/readme
- Installation and configuration: https://api.pulumi.com/api/registry/packages/pulumi/pulumi/datadog/versions/latest/installation
- Per-resource/function docs: https://api.pulumi.com/api/registry/packages/pulumi/pulumi/datadog/versions/latest/docs/{token}?lang={lang}
Replace {token} with the percent-encoded token from the nav response (for example aws:s3/bucket:Bucket).
Replace {lang} with typescript, python, go, csharp, java, or yaml.
Fetch the installation endpoint above for the correct setup steps — install instructions vary between native providers, bridged Terraform providers, and component packages.
Help me get started using this provider. Show me a complete Pulumi program that provisions a common resource, including all necessary configuration and imports.
Viewing docs for Datadog v5.1.0
published on Thursday, Apr 2, 2026 by Pulumi
published on Thursday, Apr 2, 2026 by Pulumi
Installation
The datadog provider is available as a package in all Pulumi languages:
- JavaScript/TypeScript:
@pulumi/datadog - Python:
pulumi-datadog - Go:
github.com/pulumi/pulumi-datadog/sdk/v4/go/datadog - .NET:
Pulumi.Datadog - Java:
com.pulumi/datadog
The Datadog provider is used to interact with the resources supported by Datadog. The provider needs to be configured with the proper credentials before it can be used.
Use the navigation to the left to read about the available resources.
Example Usage
# Pulumi.yaml provider configuration file
name: configuration-example
runtime: nodejs
config:
datadog:apiKey:
value: 'TODO: var.datadog_api_key'
datadog:appKey:
value: 'TODO: var.datadog_app_key'
# Pulumi.yaml provider configuration file
name: configuration-example
runtime: python
config:
datadog:apiKey:
value: 'TODO: var.datadog_api_key'
datadog:appKey:
value: 'TODO: var.datadog_app_key'
# Pulumi.yaml provider configuration file
name: configuration-example
runtime: dotnet
config:
datadog:apiKey:
value: 'TODO: var.datadog_api_key'
datadog:appKey:
value: 'TODO: var.datadog_app_key'
# Pulumi.yaml provider configuration file
name: configuration-example
runtime: go
config:
datadog:apiKey:
value: 'TODO: var.datadog_api_key'
datadog:appKey:
value: 'TODO: var.datadog_app_key'
# Pulumi.yaml provider configuration file
name: configuration-example
runtime: yaml
config:
datadog:apiKey:
value: 'TODO: var.datadog_api_key'
datadog:appKey:
value: 'TODO: var.datadog_app_key'
# Pulumi.yaml provider configuration file
name: configuration-example
runtime: java
config:
datadog:apiKey:
value: 'TODO: var.datadog_api_key'
datadog:appKey:
value: 'TODO: var.datadog_app_key'
Schema
Optional
apiKey(String, Sensitive) (Required unless validate is false) Datadog API key. This can also be set via the DD_API_KEY environment variable.apiUrl(String) The API URL. This can also be set via the DD_HOST environment variable, and defaults tohttps://api.datadoghq.com. Note that this URL must not end with the/api/path. For example,https://api.datadoghq.com/is a correct value, whilehttps://api.datadoghq.com/api/is not. And if you’re working with “EU” version of Datadog, usehttps://api.datadoghq.eu/. Other Datadog region examples:https://api.us5.datadoghq.com/,https://api.us3.datadoghq.com/andhttps://api.ddog-gov.com/. See https://docs.datadoghq.com/getting_started/site/ for all available regions.appKey(String, Sensitive) (Required unless validate is false) Datadog APP key. This can also be set via the DD_APP_KEY environment variable.defaultTags(Block List, Max: 1) [Experimental - Monitors only] Configuration block containing settings to apply default resource tags across all resources. (see below for nested schema)httpClientRetryBackoffBase(Number) The HTTP request retry back off base. Defaults to 2.httpClientRetryBackoffMultiplier(Number) The HTTP request retry back off multiplier. Defaults to 2.httpClientRetryEnabled(String) Enables request retries on HTTP status codes 429 and 5xx. Valid values are [true,false]. Defaults totrue.httpClientRetryMaxRetries(Number) The HTTP request maximum retry number. Defaults to 3.httpClientRetryTimeout(Number) The HTTP request retry timeout period. Defaults to 60 seconds.validate(String) Enables validation of the provided API key during provider initialization. Valid values are [true,false]. Default is true. When false, apiKey won’t be checked.
Nested Schema for defaultTags
Optional:
tags(Map of String) [Experimental - Monitors only] Resource tags to be applied by default across all resources.
Viewing docs for Datadog v5.1.0
published on Thursday, Apr 2, 2026 by Pulumi
published on Thursday, Apr 2, 2026 by Pulumi
