published on Tuesday, Sep 15, 2026 by Pulumi
published on Tuesday, Sep 15, 2026 by Pulumi
Provides a Datadog status page degradation template resource. This can be used to create and manage pre-filled templates for degradations on a status page.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as datadog from "@pulumi/datadog";
// Create new datadog_status_page_degradation_template resource
const acmeStatusPage = new datadog.StatusPage("acme_status_page", {
name: "Acme Status",
type: "public",
domainPrefix: "acme-status",
visualizationType: "bars_and_uptime_percentage",
});
const acmeApi = new datadog.StatusPageComponent("acme_api", {
pageId: acmeStatusPage.id,
name: "API",
type: "component",
position: 0,
});
const acmeDegradationTemplate = new datadog.StatusPageDegradationTemplate("acme_degradation_template", {
pageId: acmeStatusPage.id,
name: "Acme API Degradation",
degradationTitle: "Acme API is degraded",
componentsAffecteds: [{
id: acmeApi.id,
status: "degraded",
}],
updates: [
{
message: "We are investigating issues with the Acme API.",
status: "investigating",
},
{
message: "We have resolved the Acme API issues.",
status: "resolved",
},
],
});
import pulumi
import pulumi_datadog as datadog
# Create new datadog_status_page_degradation_template resource
acme_status_page = datadog.StatusPage("acme_status_page",
name="Acme Status",
type="public",
domain_prefix="acme-status",
visualization_type="bars_and_uptime_percentage")
acme_api = datadog.StatusPageComponent("acme_api",
page_id=acme_status_page.id,
name="API",
type="component",
position=0)
acme_degradation_template = datadog.StatusPageDegradationTemplate("acme_degradation_template",
page_id=acme_status_page.id,
name="Acme API Degradation",
degradation_title="Acme API is degraded",
components_affecteds=[{
"id": acme_api.id,
"status": "degraded",
}],
updates=[
{
"message": "We are investigating issues with the Acme API.",
"status": "investigating",
},
{
"message": "We have resolved the Acme API issues.",
"status": "resolved",
},
])
package main
import (
"github.com/pulumi/pulumi-datadog/sdk/v5/go/datadog"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
// Create new datadog_status_page_degradation_template resource
acmeStatusPage, err := datadog.NewStatusPage(ctx, "acme_status_page", &datadog.StatusPageArgs{
Name: pulumi.String("Acme Status"),
Type: pulumi.String("public"),
DomainPrefix: pulumi.String("acme-status"),
VisualizationType: pulumi.String("bars_and_uptime_percentage"),
})
if err != nil {
return err
}
acmeApi, err := datadog.NewStatusPageComponent(ctx, "acme_api", &datadog.StatusPageComponentArgs{
PageId: acmeStatusPage.ID().ToIDOutput().ToStringOutput(),
Name: pulumi.String("API"),
Type: pulumi.String("component"),
Position: pulumi.Int(0),
})
if err != nil {
return err
}
_, err = datadog.NewStatusPageDegradationTemplate(ctx, "acme_degradation_template", &datadog.StatusPageDegradationTemplateArgs{
PageId: acmeStatusPage.ID().ToIDOutput().ToStringOutput(),
Name: pulumi.String("Acme API Degradation"),
DegradationTitle: pulumi.String("Acme API is degraded"),
ComponentsAffecteds: datadog.StatusPageDegradationTemplateComponentsAffectedArray{
&datadog.StatusPageDegradationTemplateComponentsAffectedArgs{
Id: acmeApi.ID().ToIDOutput().ToStringOutput(),
Status: pulumi.String("degraded"),
},
},
Updates: datadog.StatusPageDegradationTemplateUpdateArray{
&datadog.StatusPageDegradationTemplateUpdateArgs{
Message: pulumi.String("We are investigating issues with the Acme API."),
Status: pulumi.String("investigating"),
},
&datadog.StatusPageDegradationTemplateUpdateArgs{
Message: pulumi.String("We have resolved the Acme API issues."),
Status: pulumi.String("resolved"),
},
},
})
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 new datadog_status_page_degradation_template resource
var acmeStatusPage = new Datadog.StatusPage("acme_status_page", new()
{
Name = "Acme Status",
Type = "public",
DomainPrefix = "acme-status",
VisualizationType = "bars_and_uptime_percentage",
});
var acmeApi = new Datadog.StatusPageComponent("acme_api", new()
{
PageId = acmeStatusPage.Id,
Name = "API",
Type = "component",
Position = 0,
});
var acmeDegradationTemplate = new Datadog.StatusPageDegradationTemplate("acme_degradation_template", new()
{
PageId = acmeStatusPage.Id,
Name = "Acme API Degradation",
DegradationTitle = "Acme API is degraded",
ComponentsAffecteds = new[]
{
new Datadog.Inputs.StatusPageDegradationTemplateComponentsAffectedArgs
{
Id = acmeApi.Id,
Status = "degraded",
},
},
Updates = new[]
{
new Datadog.Inputs.StatusPageDegradationTemplateUpdateArgs
{
Message = "We are investigating issues with the Acme API.",
Status = "investigating",
},
new Datadog.Inputs.StatusPageDegradationTemplateUpdateArgs
{
Message = "We have resolved the Acme API issues.",
Status = "resolved",
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.datadog.StatusPage;
import com.pulumi.datadog.StatusPageArgs;
import com.pulumi.datadog.StatusPageComponent;
import com.pulumi.datadog.StatusPageComponentArgs;
import com.pulumi.datadog.StatusPageDegradationTemplate;
import com.pulumi.datadog.StatusPageDegradationTemplateArgs;
import com.pulumi.datadog.inputs.StatusPageDegradationTemplateComponentsAffectedArgs;
import com.pulumi.datadog.inputs.StatusPageDegradationTemplateUpdateArgs;
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 new datadog_status_page_degradation_template resource
var acmeStatusPage = new StatusPage("acmeStatusPage", StatusPageArgs.builder()
.name("Acme Status")
.type("public")
.domainPrefix("acme-status")
.visualizationType("bars_and_uptime_percentage")
.build());
var acmeApi = new StatusPageComponent("acmeApi", StatusPageComponentArgs.builder()
.pageId(acmeStatusPage.id())
.name("API")
.type("component")
.position(0)
.build());
var acmeDegradationTemplate = new StatusPageDegradationTemplate("acmeDegradationTemplate", StatusPageDegradationTemplateArgs.builder()
.pageId(acmeStatusPage.id())
.name("Acme API Degradation")
.degradationTitle("Acme API is degraded")
.componentsAffecteds(StatusPageDegradationTemplateComponentsAffectedArgs.builder()
.id(acmeApi.id())
.status("degraded")
.build())
.updates(
StatusPageDegradationTemplateUpdateArgs.builder()
.message("We are investigating issues with the Acme API.")
.status("investigating")
.build(),
StatusPageDegradationTemplateUpdateArgs.builder()
.message("We have resolved the Acme API issues.")
.status("resolved")
.build())
.build());
}
}
resources:
# Create new datadog_status_page_degradation_template resource
acmeStatusPage:
type: datadog:StatusPage
name: acme_status_page
properties:
name: Acme Status
type: public
domainPrefix: acme-status
visualizationType: bars_and_uptime_percentage
acmeApi:
type: datadog:StatusPageComponent
name: acme_api
properties:
pageId: ${acmeStatusPage.id}
name: API
type: component
position: 0
acmeDegradationTemplate:
type: datadog:StatusPageDegradationTemplate
name: acme_degradation_template
properties:
pageId: ${acmeStatusPage.id}
name: Acme API Degradation
degradationTitle: Acme API is degraded
componentsAffecteds:
- id: ${acmeApi.id}
status: degraded
updates:
- message: We are investigating issues with the Acme API.
status: investigating
- message: We have resolved the Acme API issues.
status: resolved
pulumi {
required_providers {
datadog = {
source = "pulumi/datadog"
}
}
}
# Create new datadog_status_page_degradation_template resource
resource "datadog_statuspage" "acme_status_page" {
name = "Acme Status"
type = "public"
domain_prefix = "acme-status"
visualization_type = "bars_and_uptime_percentage"
}
resource "datadog_statuspagecomponent" "acme_api" {
page_id = datadog_statuspage.acme_status_page.id
name = "API"
type = "component"
position = 0
}
resource "datadog_statuspagedegradationtemplate" "acme_degradation_template" {
page_id = datadog_statuspage.acme_status_page.id
name = "Acme API Degradation"
degradation_title = "Acme API is degraded"
components_affecteds {
id = datadog_statuspagecomponent.acme_api.id
status = "degraded"
}
updates {
message = "We are investigating issues with the Acme API."
status = "investigating"
}
updates {
message = "We have resolved the Acme API issues."
status = "resolved"
}
}
Create StatusPageDegradationTemplate Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new StatusPageDegradationTemplate(name: string, args: StatusPageDegradationTemplateArgs, opts?: CustomResourceOptions);@overload
def StatusPageDegradationTemplate(resource_name: str,
args: StatusPageDegradationTemplateArgs,
opts: Optional[ResourceOptions] = None)
@overload
def StatusPageDegradationTemplate(resource_name: str,
opts: Optional[ResourceOptions] = None,
name: Optional[str] = None,
page_id: Optional[str] = None,
components_affecteds: Optional[Sequence[StatusPageDegradationTemplateComponentsAffectedArgs]] = None,
degradation_title: Optional[str] = None,
updates: Optional[Sequence[StatusPageDegradationTemplateUpdateArgs]] = None)func NewStatusPageDegradationTemplate(ctx *Context, name string, args StatusPageDegradationTemplateArgs, opts ...ResourceOption) (*StatusPageDegradationTemplate, error)public StatusPageDegradationTemplate(string name, StatusPageDegradationTemplateArgs args, CustomResourceOptions? opts = null)
public StatusPageDegradationTemplate(String name, StatusPageDegradationTemplateArgs args)
public StatusPageDegradationTemplate(String name, StatusPageDegradationTemplateArgs args, CustomResourceOptions options)
type: datadog:StatusPageDegradationTemplate
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "datadog_status_page_degradation_template" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args StatusPageDegradationTemplateArgs
- 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 StatusPageDegradationTemplateArgs
- 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 StatusPageDegradationTemplateArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args StatusPageDegradationTemplateArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args StatusPageDegradationTemplateArgs
- 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 statusPageDegradationTemplateResource = new Datadog.StatusPageDegradationTemplate("statusPageDegradationTemplateResource", new()
{
Name = "string",
PageId = "string",
ComponentsAffecteds = new[]
{
new Datadog.Inputs.StatusPageDegradationTemplateComponentsAffectedArgs
{
Id = "string",
Status = "string",
Name = "string",
},
},
DegradationTitle = "string",
Updates = new[]
{
new Datadog.Inputs.StatusPageDegradationTemplateUpdateArgs
{
Status = "string",
Message = "string",
},
},
});
example, err := datadog.NewStatusPageDegradationTemplate(ctx, "statusPageDegradationTemplateResource", &datadog.StatusPageDegradationTemplateArgs{
Name: pulumi.String("string"),
PageId: pulumi.String("string"),
ComponentsAffecteds: datadog.StatusPageDegradationTemplateComponentsAffectedArray{
&datadog.StatusPageDegradationTemplateComponentsAffectedArgs{
Id: pulumi.String("string"),
Status: pulumi.String("string"),
Name: pulumi.String("string"),
},
},
DegradationTitle: pulumi.String("string"),
Updates: datadog.StatusPageDegradationTemplateUpdateArray{
&datadog.StatusPageDegradationTemplateUpdateArgs{
Status: pulumi.String("string"),
Message: pulumi.String("string"),
},
},
})
resource "datadog_status_page_degradation_template" "statusPageDegradationTemplateResource" {
lifecycle {
create_before_destroy = true
}
name = "string"
page_id = "string"
components_affecteds {
id = "string"
status = "string"
name = "string"
}
degradation_title = "string"
updates {
status = "string"
message = "string"
}
}
var statusPageDegradationTemplateResource = new StatusPageDegradationTemplate("statusPageDegradationTemplateResource", StatusPageDegradationTemplateArgs.builder()
.name("string")
.pageId("string")
.componentsAffecteds(StatusPageDegradationTemplateComponentsAffectedArgs.builder()
.id("string")
.status("string")
.name("string")
.build())
.degradationTitle("string")
.updates(StatusPageDegradationTemplateUpdateArgs.builder()
.status("string")
.message("string")
.build())
.build());
status_page_degradation_template_resource = datadog.StatusPageDegradationTemplate("statusPageDegradationTemplateResource",
name="string",
page_id="string",
components_affecteds=[{
"id": "string",
"status": "string",
"name": "string",
}],
degradation_title="string",
updates=[{
"status": "string",
"message": "string",
}])
const statusPageDegradationTemplateResource = new datadog.StatusPageDegradationTemplate("statusPageDegradationTemplateResource", {
name: "string",
pageId: "string",
componentsAffecteds: [{
id: "string",
status: "string",
name: "string",
}],
degradationTitle: "string",
updates: [{
status: "string",
message: "string",
}],
});
type: datadog:StatusPageDegradationTemplate
properties:
componentsAffecteds:
- id: string
name: string
status: string
degradationTitle: string
name: string
pageId: string
updates:
- message: string
status: string
StatusPageDegradationTemplate 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 StatusPageDegradationTemplate resource accepts the following input properties:
- Name string
- The name of the degradation template.
- Page
Id string - The ID of the status page this degradation template belongs to.
- Components
Affecteds List<StatusPage Degradation Template Components Affected> - The components affected by a degradation created from this template.
- Degradation
Title string - The title used for a degradation created from this template.
- Updates
List<Status
Page Degradation Template Update> - The pre-filled updates for a degradation created from this template.
- Name string
- The name of the degradation template.
- Page
Id string - The ID of the status page this degradation template belongs to.
- Components
Affecteds []StatusPage Degradation Template Components Affected Args - The components affected by a degradation created from this template.
- Degradation
Title string - The title used for a degradation created from this template.
- Updates
[]Status
Page Degradation Template Update Args - The pre-filled updates for a degradation created from this template.
- name string
- The name of the degradation template.
- page_
id string - The ID of the status page this degradation template belongs to.
- components_
affecteds list(object) - The components affected by a degradation created from this template.
- degradation_
title string - The title used for a degradation created from this template.
- updates list(object)
- The pre-filled updates for a degradation created from this template.
- name String
- The name of the degradation template.
- page
Id String - The ID of the status page this degradation template belongs to.
- components
Affecteds List<StatusPage Degradation Template Components Affected> - The components affected by a degradation created from this template.
- degradation
Title String - The title used for a degradation created from this template.
- updates
List<Status
Page Degradation Template Update> - The pre-filled updates for a degradation created from this template.
- name string
- The name of the degradation template.
- page
Id string - The ID of the status page this degradation template belongs to.
- components
Affecteds StatusPage Degradation Template Components Affected[] - The components affected by a degradation created from this template.
- degradation
Title string - The title used for a degradation created from this template.
- updates
Status
Page Degradation Template Update[] - The pre-filled updates for a degradation created from this template.
- name str
- The name of the degradation template.
- page_
id str - The ID of the status page this degradation template belongs to.
- components_
affecteds Sequence[StatusPage Degradation Template Components Affected Args] - The components affected by a degradation created from this template.
- degradation_
title str - The title used for a degradation created from this template.
- updates
Sequence[Status
Page Degradation Template Update Args] - The pre-filled updates for a degradation created from this template.
- name String
- The name of the degradation template.
- page
Id String - The ID of the status page this degradation template belongs to.
- components
Affecteds List<Property Map> - The components affected by a degradation created from this template.
- degradation
Title String - The title used for a degradation created from this template.
- updates List<Property Map>
- The pre-filled updates for a degradation created from this template.
Outputs
All input properties are implicitly available as output properties. Additionally, the StatusPageDegradationTemplate resource produces the following output properties:
- Created
At string - Timestamp when the degradation template was created.
- Id string
- The provider-assigned unique ID for this managed resource.
- Modified
At string - Timestamp when the degradation template was last modified.
- Created
At string - Timestamp when the degradation template was created.
- Id string
- The provider-assigned unique ID for this managed resource.
- Modified
At string - Timestamp when the degradation template was last modified.
- created_
at string - Timestamp when the degradation template was created.
- id string
- The provider-assigned unique ID for this managed resource.
- modified_
at string - Timestamp when the degradation template was last modified.
- created
At String - Timestamp when the degradation template was created.
- id String
- The provider-assigned unique ID for this managed resource.
- modified
At String - Timestamp when the degradation template was last modified.
- created
At string - Timestamp when the degradation template was created.
- id string
- The provider-assigned unique ID for this managed resource.
- modified
At string - Timestamp when the degradation template was last modified.
- created_
at str - Timestamp when the degradation template was created.
- id str
- The provider-assigned unique ID for this managed resource.
- modified_
at str - Timestamp when the degradation template was last modified.
- created
At String - Timestamp when the degradation template was created.
- id String
- The provider-assigned unique ID for this managed resource.
- modified
At String - Timestamp when the degradation template was last modified.
Look up Existing StatusPageDegradationTemplate Resource
Get an existing StatusPageDegradationTemplate 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?: StatusPageDegradationTemplateState, opts?: CustomResourceOptions): StatusPageDegradationTemplate@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
components_affecteds: Optional[Sequence[StatusPageDegradationTemplateComponentsAffectedArgs]] = None,
created_at: Optional[str] = None,
degradation_title: Optional[str] = None,
modified_at: Optional[str] = None,
name: Optional[str] = None,
page_id: Optional[str] = None,
updates: Optional[Sequence[StatusPageDegradationTemplateUpdateArgs]] = None) -> StatusPageDegradationTemplatefunc GetStatusPageDegradationTemplate(ctx *Context, name string, id IDInput, state *StatusPageDegradationTemplateState, opts ...ResourceOption) (*StatusPageDegradationTemplate, error)public static StatusPageDegradationTemplate Get(string name, Input<string> id, StatusPageDegradationTemplateState? state, CustomResourceOptions? opts = null)public static StatusPageDegradationTemplate get(String name, Output<String> id, StatusPageDegradationTemplateState state, CustomResourceOptions options)resources: _: type: datadog:StatusPageDegradationTemplate get: id: ${id}import {
to = datadog_status_page_degradation_template.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.
- Components
Affecteds List<StatusPage Degradation Template Components Affected> - The components affected by a degradation created from this template.
- Created
At string - Timestamp when the degradation template was created.
- Degradation
Title string - The title used for a degradation created from this template.
- Modified
At string - Timestamp when the degradation template was last modified.
- Name string
- The name of the degradation template.
- Page
Id string - The ID of the status page this degradation template belongs to.
- Updates
List<Status
Page Degradation Template Update> - The pre-filled updates for a degradation created from this template.
- Components
Affecteds []StatusPage Degradation Template Components Affected Args - The components affected by a degradation created from this template.
- Created
At string - Timestamp when the degradation template was created.
- Degradation
Title string - The title used for a degradation created from this template.
- Modified
At string - Timestamp when the degradation template was last modified.
- Name string
- The name of the degradation template.
- Page
Id string - The ID of the status page this degradation template belongs to.
- Updates
[]Status
Page Degradation Template Update Args - The pre-filled updates for a degradation created from this template.
- components_
affecteds list(object) - The components affected by a degradation created from this template.
- created_
at string - Timestamp when the degradation template was created.
- degradation_
title string - The title used for a degradation created from this template.
- modified_
at string - Timestamp when the degradation template was last modified.
- name string
- The name of the degradation template.
- page_
id string - The ID of the status page this degradation template belongs to.
- updates list(object)
- The pre-filled updates for a degradation created from this template.
- components
Affecteds List<StatusPage Degradation Template Components Affected> - The components affected by a degradation created from this template.
- created
At String - Timestamp when the degradation template was created.
- degradation
Title String - The title used for a degradation created from this template.
- modified
At String - Timestamp when the degradation template was last modified.
- name String
- The name of the degradation template.
- page
Id String - The ID of the status page this degradation template belongs to.
- updates
List<Status
Page Degradation Template Update> - The pre-filled updates for a degradation created from this template.
- components
Affecteds StatusPage Degradation Template Components Affected[] - The components affected by a degradation created from this template.
- created
At string - Timestamp when the degradation template was created.
- degradation
Title string - The title used for a degradation created from this template.
- modified
At string - Timestamp when the degradation template was last modified.
- name string
- The name of the degradation template.
- page
Id string - The ID of the status page this degradation template belongs to.
- updates
Status
Page Degradation Template Update[] - The pre-filled updates for a degradation created from this template.
- components_
affecteds Sequence[StatusPage Degradation Template Components Affected Args] - The components affected by a degradation created from this template.
- created_
at str - Timestamp when the degradation template was created.
- degradation_
title str - The title used for a degradation created from this template.
- modified_
at str - Timestamp when the degradation template was last modified.
- name str
- The name of the degradation template.
- page_
id str - The ID of the status page this degradation template belongs to.
- updates
Sequence[Status
Page Degradation Template Update Args] - The pre-filled updates for a degradation created from this template.
- components
Affecteds List<Property Map> - The components affected by a degradation created from this template.
- created
At String - Timestamp when the degradation template was created.
- degradation
Title String - The title used for a degradation created from this template.
- modified
At String - Timestamp when the degradation template was last modified.
- name String
- The name of the degradation template.
- page
Id String - The ID of the status page this degradation template belongs to.
- updates List<Property Map>
- The pre-filled updates for a degradation created from this template.
Supporting Types
StatusPageDegradationTemplateComponentsAffected, StatusPageDegradationTemplateComponentsAffectedArgs
StatusPageDegradationTemplateUpdate, StatusPageDegradationTemplateUpdateArgs
Import
The pulumi import command can be used, for example:
$ pulumi import datadog:index/statusPageDegradationTemplate:StatusPageDegradationTemplate example "09a89ab4-d622-4fbd-87e5-81b4124bd064:1e2c6615-801b-4630-9d31-5b2f27d5b6f0"
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 Tuesday, Sep 15, 2026 by Pulumi