published on Thursday, Jul 30, 2026 by Pulumi
published on Thursday, Jul 30, 2026 by Pulumi
Provides a Datadog incident type resource. This can be used to create and manage Datadog incident types.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as datadog from "@pulumi/datadog";
// Basic incident type
const example = new datadog.IncidentType("example", {
name: "Security Incident",
description: "Security-related incidents requiring immediate attention",
isDefault: false,
});
// Incident type with the full configuration block shown at its default values.
// Every field is optional; omitted fields fall back to these same defaults.
const withConfiguration = new datadog.IncidentType("with_configuration", {
name: "Customer Impacting",
description: "Incidents that impact customers",
configuration: {
private_incidents: false,
private_incidents_by_default: false,
allow_workflows: true,
allow_incident_deletion: false,
editable_timestamps: false,
test_incidents: true,
create_message: "",
slug_source: "default",
},
});
import pulumi
import pulumi_datadog as datadog
# Basic incident type
example = datadog.IncidentType("example",
name="Security Incident",
description="Security-related incidents requiring immediate attention",
is_default=False)
# Incident type with the full configuration block shown at its default values.
# Every field is optional; omitted fields fall back to these same defaults.
with_configuration = datadog.IncidentType("with_configuration",
name="Customer Impacting",
description="Incidents that impact customers",
configuration={
"private_incidents": False,
"private_incidents_by_default": False,
"allow_workflows": True,
"allow_incident_deletion": False,
"editable_timestamps": False,
"test_incidents": True,
"create_message": "",
"slug_source": "default",
})
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 {
// Basic incident type
_, err := datadog.NewIncidentType(ctx, "example", &datadog.IncidentTypeArgs{
Name: pulumi.String("Security Incident"),
Description: pulumi.String("Security-related incidents requiring immediate attention"),
IsDefault: pulumi.Bool(false),
})
if err != nil {
return err
}
// Incident type with the full configuration block shown at its default values.
// Every field is optional; omitted fields fall back to these same defaults.
_, err = datadog.NewIncidentType(ctx, "with_configuration", &datadog.IncidentTypeArgs{
Name: pulumi.String("Customer Impacting"),
Description: pulumi.String("Incidents that impact customers"),
Configuration: &datadog.IncidentTypeConfigurationArgs{
Private_incidents: false,
Private_incidents_by_default: false,
Allow_workflows: true,
Allow_incident_deletion: false,
Editable_timestamps: false,
Test_incidents: true,
Create_message: "",
Slug_source: "default",
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Datadog = Pulumi.Datadog;
return await Deployment.RunAsync(() =>
{
// Basic incident type
var example = new Datadog.IncidentType("example", new()
{
Name = "Security Incident",
Description = "Security-related incidents requiring immediate attention",
IsDefault = false,
});
// Incident type with the full configuration block shown at its default values.
// Every field is optional; omitted fields fall back to these same defaults.
var withConfiguration = new Datadog.IncidentType("with_configuration", new()
{
Name = "Customer Impacting",
Description = "Incidents that impact customers",
Configuration = new Datadog.Inputs.IncidentTypeConfigurationArgs
{
Private_incidents = false,
Private_incidents_by_default = false,
Allow_workflows = true,
Allow_incident_deletion = false,
Editable_timestamps = false,
Test_incidents = true,
Create_message = "",
Slug_source = "default",
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.datadog.IncidentType;
import com.pulumi.datadog.IncidentTypeArgs;
import com.pulumi.datadog.inputs.IncidentTypeConfigurationArgs;
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) {
// Basic incident type
var example = new IncidentType("example", IncidentTypeArgs.builder()
.name("Security Incident")
.description("Security-related incidents requiring immediate attention")
.isDefault(false)
.build());
// Incident type with the full configuration block shown at its default values.
// Every field is optional; omitted fields fall back to these same defaults.
var withConfiguration = new IncidentType("withConfiguration", IncidentTypeArgs.builder()
.name("Customer Impacting")
.description("Incidents that impact customers")
.configuration(IncidentTypeConfigurationArgs.builder()
.private_incidents(false)
.private_incidents_by_default(false)
.allow_workflows(true)
.allow_incident_deletion(false)
.editable_timestamps(false)
.test_incidents(true)
.create_message("")
.slug_source("default")
.build())
.build());
}
}
resources:
# Basic incident type
example:
type: datadog:IncidentType
properties:
name: Security Incident
description: Security-related incidents requiring immediate attention
isDefault: false
# Incident type with the full configuration block shown at its default values.
# Every field is optional; omitted fields fall back to these same defaults.
withConfiguration:
type: datadog:IncidentType
name: with_configuration
properties:
name: Customer Impacting
description: Incidents that impact customers
configuration:
private_incidents: false
private_incidents_by_default: false
allow_workflows: true
allow_incident_deletion: false
editable_timestamps: false
test_incidents: true
create_message: ""
slug_source: default
pulumi {
required_providers {
datadog = {
source = "pulumi/datadog"
}
}
}
# Basic incident type
resource "datadog_incidenttype" "example" {
name = "Security Incident"
description = "Security-related incidents requiring immediate attention"
is_default = false
}
# Incident type with the full configuration block shown at its default values.
# Every field is optional; omitted fields fall back to these same defaults.
resource "datadog_incidenttype" "with_configuration" {
name = "Customer Impacting"
description = "Incidents that impact customers"
configuration = {
private_incidents = false
private_incidents_by_default = false
allow_workflows = true
allow_incident_deletion = false
editable_timestamps = false
test_incidents = true
create_message = ""
slug_source = "default"
}
}
Create IncidentType Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new IncidentType(name: string, args: IncidentTypeArgs, opts?: CustomResourceOptions);@overload
def IncidentType(resource_name: str,
args: IncidentTypeArgs,
opts: Optional[ResourceOptions] = None)
@overload
def IncidentType(resource_name: str,
opts: Optional[ResourceOptions] = None,
name: Optional[str] = None,
configuration: Optional[IncidentTypeConfigurationArgs] = None,
description: Optional[str] = None,
is_default: Optional[bool] = None)func NewIncidentType(ctx *Context, name string, args IncidentTypeArgs, opts ...ResourceOption) (*IncidentType, error)public IncidentType(string name, IncidentTypeArgs args, CustomResourceOptions? opts = null)
public IncidentType(String name, IncidentTypeArgs args)
public IncidentType(String name, IncidentTypeArgs args, CustomResourceOptions options)
type: datadog:IncidentType
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "datadog_incident_type" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args IncidentTypeArgs
- 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 IncidentTypeArgs
- 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 IncidentTypeArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args IncidentTypeArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args IncidentTypeArgs
- 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 incidentTypeResource = new Datadog.IncidentType("incidentTypeResource", new()
{
Name = "string",
Configuration = new Datadog.Inputs.IncidentTypeConfigurationArgs
{
AllowIncidentDeletion = false,
AllowWorkflows = false,
CreateMessage = "string",
EditableTimestamps = false,
PrivateIncidents = false,
PrivateIncidentsByDefault = false,
SlugSource = "string",
TestIncidents = false,
},
Description = "string",
IsDefault = false,
});
example, err := datadog.NewIncidentType(ctx, "incidentTypeResource", &datadog.IncidentTypeArgs{
Name: pulumi.String("string"),
Configuration: &datadog.IncidentTypeConfigurationArgs{
AllowIncidentDeletion: pulumi.Bool(false),
AllowWorkflows: pulumi.Bool(false),
CreateMessage: pulumi.String("string"),
EditableTimestamps: pulumi.Bool(false),
PrivateIncidents: pulumi.Bool(false),
PrivateIncidentsByDefault: pulumi.Bool(false),
SlugSource: pulumi.String("string"),
TestIncidents: pulumi.Bool(false),
},
Description: pulumi.String("string"),
IsDefault: pulumi.Bool(false),
})
resource "datadog_incident_type" "incidentTypeResource" {
lifecycle {
create_before_destroy = true
}
name = "string"
configuration = {
allow_incident_deletion = false
allow_workflows = false
create_message = "string"
editable_timestamps = false
private_incidents = false
private_incidents_by_default = false
slug_source = "string"
test_incidents = false
}
description = "string"
is_default = false
}
var incidentTypeResource = new IncidentType("incidentTypeResource", IncidentTypeArgs.builder()
.name("string")
.configuration(IncidentTypeConfigurationArgs.builder()
.allowIncidentDeletion(false)
.allowWorkflows(false)
.createMessage("string")
.editableTimestamps(false)
.privateIncidents(false)
.privateIncidentsByDefault(false)
.slugSource("string")
.testIncidents(false)
.build())
.description("string")
.isDefault(false)
.build());
incident_type_resource = datadog.IncidentType("incidentTypeResource",
name="string",
configuration={
"allow_incident_deletion": False,
"allow_workflows": False,
"create_message": "string",
"editable_timestamps": False,
"private_incidents": False,
"private_incidents_by_default": False,
"slug_source": "string",
"test_incidents": False,
},
description="string",
is_default=False)
const incidentTypeResource = new datadog.IncidentType("incidentTypeResource", {
name: "string",
configuration: {
allowIncidentDeletion: false,
allowWorkflows: false,
createMessage: "string",
editableTimestamps: false,
privateIncidents: false,
privateIncidentsByDefault: false,
slugSource: "string",
testIncidents: false,
},
description: "string",
isDefault: false,
});
type: datadog:IncidentType
properties:
configuration:
allowIncidentDeletion: false
allowWorkflows: false
createMessage: string
editableTimestamps: false
privateIncidents: false
privateIncidentsByDefault: false
slugSource: string
testIncidents: false
description: string
isDefault: false
name: string
IncidentType 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 IncidentType resource accepts the following input properties:
- Name string
- Name of the incident type. Must be between 1 and 50 characters.
- Configuration
Incident
Type Configuration - The incident type's behavior settings. Any field left unset takes its server-side default. This block is applied in a separate call after the incident type is created.
- Description string
- Description of the incident type. The description can have a maximum of 512 characters.
- Is
Default bool - Whether this incident type is the default type.
- Name string
- Name of the incident type. Must be between 1 and 50 characters.
- Configuration
Incident
Type Configuration Args - The incident type's behavior settings. Any field left unset takes its server-side default. This block is applied in a separate call after the incident type is created.
- Description string
- Description of the incident type. The description can have a maximum of 512 characters.
- Is
Default bool - Whether this incident type is the default type.
- name string
- Name of the incident type. Must be between 1 and 50 characters.
- configuration object
- The incident type's behavior settings. Any field left unset takes its server-side default. This block is applied in a separate call after the incident type is created.
- description string
- Description of the incident type. The description can have a maximum of 512 characters.
- is_
default bool - Whether this incident type is the default type.
- name String
- Name of the incident type. Must be between 1 and 50 characters.
- configuration
Incident
Type Configuration - The incident type's behavior settings. Any field left unset takes its server-side default. This block is applied in a separate call after the incident type is created.
- description String
- Description of the incident type. The description can have a maximum of 512 characters.
- is
Default Boolean - Whether this incident type is the default type.
- name string
- Name of the incident type. Must be between 1 and 50 characters.
- configuration
Incident
Type Configuration - The incident type's behavior settings. Any field left unset takes its server-side default. This block is applied in a separate call after the incident type is created.
- description string
- Description of the incident type. The description can have a maximum of 512 characters.
- is
Default boolean - Whether this incident type is the default type.
- name str
- Name of the incident type. Must be between 1 and 50 characters.
- configuration
Incident
Type Configuration Args - The incident type's behavior settings. Any field left unset takes its server-side default. This block is applied in a separate call after the incident type is created.
- description str
- Description of the incident type. The description can have a maximum of 512 characters.
- is_
default bool - Whether this incident type is the default type.
- name String
- Name of the incident type. Must be between 1 and 50 characters.
- configuration Property Map
- The incident type's behavior settings. Any field left unset takes its server-side default. This block is applied in a separate call after the incident type is created.
- description String
- Description of the incident type. The description can have a maximum of 512 characters.
- is
Default Boolean - Whether this incident type is the default type.
Outputs
All input properties are implicitly available as output properties. Additionally, the IncidentType 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 IncidentType Resource
Get an existing IncidentType 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?: IncidentTypeState, opts?: CustomResourceOptions): IncidentType@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
configuration: Optional[IncidentTypeConfigurationArgs] = None,
description: Optional[str] = None,
is_default: Optional[bool] = None,
name: Optional[str] = None) -> IncidentTypefunc GetIncidentType(ctx *Context, name string, id IDInput, state *IncidentTypeState, opts ...ResourceOption) (*IncidentType, error)public static IncidentType Get(string name, Input<string> id, IncidentTypeState? state, CustomResourceOptions? opts = null)public static IncidentType get(String name, Output<String> id, IncidentTypeState state, CustomResourceOptions options)resources: _: type: datadog:IncidentType get: id: ${id}import {
to = datadog_incident_type.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.
- Configuration
Incident
Type Configuration - The incident type's behavior settings. Any field left unset takes its server-side default. This block is applied in a separate call after the incident type is created.
- Description string
- Description of the incident type. The description can have a maximum of 512 characters.
- Is
Default bool - Whether this incident type is the default type.
- Name string
- Name of the incident type. Must be between 1 and 50 characters.
- Configuration
Incident
Type Configuration Args - The incident type's behavior settings. Any field left unset takes its server-side default. This block is applied in a separate call after the incident type is created.
- Description string
- Description of the incident type. The description can have a maximum of 512 characters.
- Is
Default bool - Whether this incident type is the default type.
- Name string
- Name of the incident type. Must be between 1 and 50 characters.
- configuration object
- The incident type's behavior settings. Any field left unset takes its server-side default. This block is applied in a separate call after the incident type is created.
- description string
- Description of the incident type. The description can have a maximum of 512 characters.
- is_
default bool - Whether this incident type is the default type.
- name string
- Name of the incident type. Must be between 1 and 50 characters.
- configuration
Incident
Type Configuration - The incident type's behavior settings. Any field left unset takes its server-side default. This block is applied in a separate call after the incident type is created.
- description String
- Description of the incident type. The description can have a maximum of 512 characters.
- is
Default Boolean - Whether this incident type is the default type.
- name String
- Name of the incident type. Must be between 1 and 50 characters.
- configuration
Incident
Type Configuration - The incident type's behavior settings. Any field left unset takes its server-side default. This block is applied in a separate call after the incident type is created.
- description string
- Description of the incident type. The description can have a maximum of 512 characters.
- is
Default boolean - Whether this incident type is the default type.
- name string
- Name of the incident type. Must be between 1 and 50 characters.
- configuration
Incident
Type Configuration Args - The incident type's behavior settings. Any field left unset takes its server-side default. This block is applied in a separate call after the incident type is created.
- description str
- Description of the incident type. The description can have a maximum of 512 characters.
- is_
default bool - Whether this incident type is the default type.
- name str
- Name of the incident type. Must be between 1 and 50 characters.
- configuration Property Map
- The incident type's behavior settings. Any field left unset takes its server-side default. This block is applied in a separate call after the incident type is created.
- description String
- Description of the incident type. The description can have a maximum of 512 characters.
- is
Default Boolean - Whether this incident type is the default type.
- name String
- Name of the incident type. Must be between 1 and 50 characters.
Supporting Types
IncidentTypeConfiguration, IncidentTypeConfigurationArgs
- Allow
Incident boolDeletion - Whether incidents of this type can be deleted. Defaults to
false. - Allow
Workflows bool - Whether users can manually run a workflow from an incident of this type. Defaults to
true. - Create
Message string - An optional message shown to users when they declare an incident of this type. Defaults to an empty string.
- Editable
Timestamps bool - Whether responders can edit incident timestamps for incidents of this type. Defaults to
false. - Private
Incidents bool - Whether responders can create private incidents of this type. Defaults to
false. - Private
Incidents boolBy Default - Whether the private toggle is enabled by default in the incident creation modal for this type. Defaults to
false. - Slug
Source string - The source used to derive the incident slug. When set to
servicenow, incidents display the ServiceNow record ID instead of the public ID. If no ServiceNow integration exists, the public ID is displayed. Defaults todefault. Valid values aredefault,servicenow. - Test
Incidents bool - Whether test incidents of this type can be created. Defaults to
true.
- Allow
Incident boolDeletion - Whether incidents of this type can be deleted. Defaults to
false. - Allow
Workflows bool - Whether users can manually run a workflow from an incident of this type. Defaults to
true. - Create
Message string - An optional message shown to users when they declare an incident of this type. Defaults to an empty string.
- Editable
Timestamps bool - Whether responders can edit incident timestamps for incidents of this type. Defaults to
false. - Private
Incidents bool - Whether responders can create private incidents of this type. Defaults to
false. - Private
Incidents boolBy Default - Whether the private toggle is enabled by default in the incident creation modal for this type. Defaults to
false. - Slug
Source string - The source used to derive the incident slug. When set to
servicenow, incidents display the ServiceNow record ID instead of the public ID. If no ServiceNow integration exists, the public ID is displayed. Defaults todefault. Valid values aredefault,servicenow. - Test
Incidents bool - Whether test incidents of this type can be created. Defaults to
true.
- allow_
incident_ booldeletion - Whether incidents of this type can be deleted. Defaults to
false. - allow_
workflows bool - Whether users can manually run a workflow from an incident of this type. Defaults to
true. - create_
message string - An optional message shown to users when they declare an incident of this type. Defaults to an empty string.
- editable_
timestamps bool - Whether responders can edit incident timestamps for incidents of this type. Defaults to
false. - private_
incidents bool - Whether responders can create private incidents of this type. Defaults to
false. - private_
incidents_ boolby_ default - Whether the private toggle is enabled by default in the incident creation modal for this type. Defaults to
false. - slug_
source string - The source used to derive the incident slug. When set to
servicenow, incidents display the ServiceNow record ID instead of the public ID. If no ServiceNow integration exists, the public ID is displayed. Defaults todefault. Valid values aredefault,servicenow. - test_
incidents bool - Whether test incidents of this type can be created. Defaults to
true.
- allow
Incident BooleanDeletion - Whether incidents of this type can be deleted. Defaults to
false. - allow
Workflows Boolean - Whether users can manually run a workflow from an incident of this type. Defaults to
true. - create
Message String - An optional message shown to users when they declare an incident of this type. Defaults to an empty string.
- editable
Timestamps Boolean - Whether responders can edit incident timestamps for incidents of this type. Defaults to
false. - private
Incidents Boolean - Whether responders can create private incidents of this type. Defaults to
false. - private
Incidents BooleanBy Default - Whether the private toggle is enabled by default in the incident creation modal for this type. Defaults to
false. - slug
Source String - The source used to derive the incident slug. When set to
servicenow, incidents display the ServiceNow record ID instead of the public ID. If no ServiceNow integration exists, the public ID is displayed. Defaults todefault. Valid values aredefault,servicenow. - test
Incidents Boolean - Whether test incidents of this type can be created. Defaults to
true.
- allow
Incident booleanDeletion - Whether incidents of this type can be deleted. Defaults to
false. - allow
Workflows boolean - Whether users can manually run a workflow from an incident of this type. Defaults to
true. - create
Message string - An optional message shown to users when they declare an incident of this type. Defaults to an empty string.
- editable
Timestamps boolean - Whether responders can edit incident timestamps for incidents of this type. Defaults to
false. - private
Incidents boolean - Whether responders can create private incidents of this type. Defaults to
false. - private
Incidents booleanBy Default - Whether the private toggle is enabled by default in the incident creation modal for this type. Defaults to
false. - slug
Source string - The source used to derive the incident slug. When set to
servicenow, incidents display the ServiceNow record ID instead of the public ID. If no ServiceNow integration exists, the public ID is displayed. Defaults todefault. Valid values aredefault,servicenow. - test
Incidents boolean - Whether test incidents of this type can be created. Defaults to
true.
- allow_
incident_ booldeletion - Whether incidents of this type can be deleted. Defaults to
false. - allow_
workflows bool - Whether users can manually run a workflow from an incident of this type. Defaults to
true. - create_
message str - An optional message shown to users when they declare an incident of this type. Defaults to an empty string.
- editable_
timestamps bool - Whether responders can edit incident timestamps for incidents of this type. Defaults to
false. - private_
incidents bool - Whether responders can create private incidents of this type. Defaults to
false. - private_
incidents_ boolby_ default - Whether the private toggle is enabled by default in the incident creation modal for this type. Defaults to
false. - slug_
source str - The source used to derive the incident slug. When set to
servicenow, incidents display the ServiceNow record ID instead of the public ID. If no ServiceNow integration exists, the public ID is displayed. Defaults todefault. Valid values aredefault,servicenow. - test_
incidents bool - Whether test incidents of this type can be created. Defaults to
true.
- allow
Incident BooleanDeletion - Whether incidents of this type can be deleted. Defaults to
false. - allow
Workflows Boolean - Whether users can manually run a workflow from an incident of this type. Defaults to
true. - create
Message String - An optional message shown to users when they declare an incident of this type. Defaults to an empty string.
- editable
Timestamps Boolean - Whether responders can edit incident timestamps for incidents of this type. Defaults to
false. - private
Incidents Boolean - Whether responders can create private incidents of this type. Defaults to
false. - private
Incidents BooleanBy Default - Whether the private toggle is enabled by default in the incident creation modal for this type. Defaults to
false. - slug
Source String - The source used to derive the incident slug. When set to
servicenow, incidents display the ServiceNow record ID instead of the public ID. If no ServiceNow integration exists, the public ID is displayed. Defaults todefault. Valid values aredefault,servicenow. - test
Incidents Boolean - Whether test incidents of this type can be created. Defaults to
true.
Import
The pulumi import command can be used, for example:
$ pulumi import datadog:index/incidentType:IncidentType example "12345678-1234-1234-1234-1234567890ab"
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, Jul 30, 2026 by Pulumi