1. Registry
  2. Packages
  3. Datadog Provider
  4. API Docs
  5. IncidentPostmortemTemplate
Viewing docs for Datadog v5.10.0
published on Thursday, Jul 30, 2026 by Pulumi
datadog logo
Viewing docs for Datadog v5.10.0
published on Thursday, Jul 30, 2026 by Pulumi

    Provides a Datadog incident postmortem template resource. This can be used to create and manage Datadog incident postmortem templates.

    Create IncidentPostmortemTemplate Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new IncidentPostmortemTemplate(name: string, args: IncidentPostmortemTemplateArgs, opts?: CustomResourceOptions);
    @overload
    def IncidentPostmortemTemplate(resource_name: str,
                                   args: IncidentPostmortemTemplateArgs,
                                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def IncidentPostmortemTemplate(resource_name: str,
                                   opts: Optional[ResourceOptions] = None,
                                   incident_type: Optional[str] = None,
                                   name: Optional[str] = None,
                                   confluence_postmortem_settings: Optional[IncidentPostmortemTemplateConfluencePostmortemSettingsArgs] = None,
                                   content: Optional[str] = None,
                                   google_docs_postmortem_settings: Optional[IncidentPostmortemTemplateGoogleDocsPostmortemSettingsArgs] = None,
                                   is_default: Optional[bool] = None,
                                   location: Optional[str] = None)
    func NewIncidentPostmortemTemplate(ctx *Context, name string, args IncidentPostmortemTemplateArgs, opts ...ResourceOption) (*IncidentPostmortemTemplate, error)
    public IncidentPostmortemTemplate(string name, IncidentPostmortemTemplateArgs args, CustomResourceOptions? opts = null)
    public IncidentPostmortemTemplate(String name, IncidentPostmortemTemplateArgs args)
    public IncidentPostmortemTemplate(String name, IncidentPostmortemTemplateArgs args, CustomResourceOptions options)
    
    type: datadog:IncidentPostmortemTemplate
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "datadog_incident_postmortem_template" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args IncidentPostmortemTemplateArgs
    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 IncidentPostmortemTemplateArgs
    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 IncidentPostmortemTemplateArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args IncidentPostmortemTemplateArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args IncidentPostmortemTemplateArgs
    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 incidentPostmortemTemplateResource = new Datadog.IncidentPostmortemTemplate("incidentPostmortemTemplateResource", new()
    {
        IncidentType = "string",
        Name = "string",
        ConfluencePostmortemSettings = new Datadog.Inputs.IncidentPostmortemTemplateConfluencePostmortemSettingsArgs
        {
            AccountId = "string",
            ParentId = "string",
            SpaceId = "string",
        },
        Content = "string",
        GoogleDocsPostmortemSettings = new Datadog.Inputs.IncidentPostmortemTemplateGoogleDocsPostmortemSettingsArgs
        {
            AccountId = "string",
            ParentFolderId = "string",
        },
        IsDefault = false,
        Location = "string",
    });
    
    example, err := datadog.NewIncidentPostmortemTemplate(ctx, "incidentPostmortemTemplateResource", &datadog.IncidentPostmortemTemplateArgs{
    	IncidentType: pulumi.String("string"),
    	Name:         pulumi.String("string"),
    	ConfluencePostmortemSettings: &datadog.IncidentPostmortemTemplateConfluencePostmortemSettingsArgs{
    		AccountId: pulumi.String("string"),
    		ParentId:  pulumi.String("string"),
    		SpaceId:   pulumi.String("string"),
    	},
    	Content: pulumi.String("string"),
    	GoogleDocsPostmortemSettings: &datadog.IncidentPostmortemTemplateGoogleDocsPostmortemSettingsArgs{
    		AccountId:      pulumi.String("string"),
    		ParentFolderId: pulumi.String("string"),
    	},
    	IsDefault: pulumi.Bool(false),
    	Location:  pulumi.String("string"),
    })
    
    resource "datadog_incident_postmortem_template" "incidentPostmortemTemplateResource" {
      lifecycle {
        create_before_destroy = true
      }
      incident_type = "string"
      name          = "string"
      confluence_postmortem_settings = {
        account_id = "string"
        parent_id  = "string"
        space_id   = "string"
      }
      content = "string"
      google_docs_postmortem_settings = {
        account_id       = "string"
        parent_folder_id = "string"
      }
      is_default = false
      location   = "string"
    }
    
    var incidentPostmortemTemplateResource = new IncidentPostmortemTemplate("incidentPostmortemTemplateResource", IncidentPostmortemTemplateArgs.builder()
        .incidentType("string")
        .name("string")
        .confluencePostmortemSettings(IncidentPostmortemTemplateConfluencePostmortemSettingsArgs.builder()
            .accountId("string")
            .parentId("string")
            .spaceId("string")
            .build())
        .content("string")
        .googleDocsPostmortemSettings(IncidentPostmortemTemplateGoogleDocsPostmortemSettingsArgs.builder()
            .accountId("string")
            .parentFolderId("string")
            .build())
        .isDefault(false)
        .location("string")
        .build());
    
    incident_postmortem_template_resource = datadog.IncidentPostmortemTemplate("incidentPostmortemTemplateResource",
        incident_type="string",
        name="string",
        confluence_postmortem_settings={
            "account_id": "string",
            "parent_id": "string",
            "space_id": "string",
        },
        content="string",
        google_docs_postmortem_settings={
            "account_id": "string",
            "parent_folder_id": "string",
        },
        is_default=False,
        location="string")
    
    const incidentPostmortemTemplateResource = new datadog.IncidentPostmortemTemplate("incidentPostmortemTemplateResource", {
        incidentType: "string",
        name: "string",
        confluencePostmortemSettings: {
            accountId: "string",
            parentId: "string",
            spaceId: "string",
        },
        content: "string",
        googleDocsPostmortemSettings: {
            accountId: "string",
            parentFolderId: "string",
        },
        isDefault: false,
        location: "string",
    });
    
    type: datadog:IncidentPostmortemTemplate
    properties:
        confluencePostmortemSettings:
            accountId: string
            parentId: string
            spaceId: string
        content: string
        googleDocsPostmortemSettings:
            accountId: string
            parentFolderId: string
        incidentType: string
        isDefault: false
        location: string
        name: string
    

    IncidentPostmortemTemplate 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 IncidentPostmortemTemplate resource accepts the following input properties:

    IncidentType string
    The ID of the incident type this template is associated with. Immutable after creation.
    Name string
    The name of the template.
    ConfluencePostmortemSettings IncidentPostmortemTemplateConfluencePostmortemSettings
    Settings for a postmortem template stored in Confluence. Required when location is confluence.
    Content string
    The templated content of the postmortem, supporting Markdown and incident template variables.
    GoogleDocsPostmortemSettings IncidentPostmortemTemplateGoogleDocsPostmortemSettings
    Settings for a postmortem template stored in Google Docs. Required when location is google*docs.
    IsDefault bool
    Whether this template is a default for its incident type. The API stores a timestamp; the effective default for an incident type is the template with the most recent default timestamp.
    Location string
    The location where the postmortem is created and stored. Valid values are: datadognotebooks, confluence, googledocs. Defaults to datadog_notebooks.
    IncidentType string
    The ID of the incident type this template is associated with. Immutable after creation.
    Name string
    The name of the template.
    ConfluencePostmortemSettings IncidentPostmortemTemplateConfluencePostmortemSettingsArgs
    Settings for a postmortem template stored in Confluence. Required when location is confluence.
    Content string
    The templated content of the postmortem, supporting Markdown and incident template variables.
    GoogleDocsPostmortemSettings IncidentPostmortemTemplateGoogleDocsPostmortemSettingsArgs
    Settings for a postmortem template stored in Google Docs. Required when location is google*docs.
    IsDefault bool
    Whether this template is a default for its incident type. The API stores a timestamp; the effective default for an incident type is the template with the most recent default timestamp.
    Location string
    The location where the postmortem is created and stored. Valid values are: datadognotebooks, confluence, googledocs. Defaults to datadog_notebooks.
    incident_type string
    The ID of the incident type this template is associated with. Immutable after creation.
    name string
    The name of the template.
    confluence_postmortem_settings object
    Settings for a postmortem template stored in Confluence. Required when location is confluence.
    content string
    The templated content of the postmortem, supporting Markdown and incident template variables.
    google_docs_postmortem_settings object
    Settings for a postmortem template stored in Google Docs. Required when location is google*docs.
    is_default bool
    Whether this template is a default for its incident type. The API stores a timestamp; the effective default for an incident type is the template with the most recent default timestamp.
    location string
    The location where the postmortem is created and stored. Valid values are: datadognotebooks, confluence, googledocs. Defaults to datadog_notebooks.
    incidentType String
    The ID of the incident type this template is associated with. Immutable after creation.
    name String
    The name of the template.
    confluencePostmortemSettings IncidentPostmortemTemplateConfluencePostmortemSettings
    Settings for a postmortem template stored in Confluence. Required when location is confluence.
    content String
    The templated content of the postmortem, supporting Markdown and incident template variables.
    googleDocsPostmortemSettings IncidentPostmortemTemplateGoogleDocsPostmortemSettings
    Settings for a postmortem template stored in Google Docs. Required when location is google*docs.
    isDefault Boolean
    Whether this template is a default for its incident type. The API stores a timestamp; the effective default for an incident type is the template with the most recent default timestamp.
    location String
    The location where the postmortem is created and stored. Valid values are: datadognotebooks, confluence, googledocs. Defaults to datadog_notebooks.
    incidentType string
    The ID of the incident type this template is associated with. Immutable after creation.
    name string
    The name of the template.
    confluencePostmortemSettings IncidentPostmortemTemplateConfluencePostmortemSettings
    Settings for a postmortem template stored in Confluence. Required when location is confluence.
    content string
    The templated content of the postmortem, supporting Markdown and incident template variables.
    googleDocsPostmortemSettings IncidentPostmortemTemplateGoogleDocsPostmortemSettings
    Settings for a postmortem template stored in Google Docs. Required when location is google*docs.
    isDefault boolean
    Whether this template is a default for its incident type. The API stores a timestamp; the effective default for an incident type is the template with the most recent default timestamp.
    location string
    The location where the postmortem is created and stored. Valid values are: datadognotebooks, confluence, googledocs. Defaults to datadog_notebooks.
    incident_type str
    The ID of the incident type this template is associated with. Immutable after creation.
    name str
    The name of the template.
    confluence_postmortem_settings IncidentPostmortemTemplateConfluencePostmortemSettingsArgs
    Settings for a postmortem template stored in Confluence. Required when location is confluence.
    content str
    The templated content of the postmortem, supporting Markdown and incident template variables.
    google_docs_postmortem_settings IncidentPostmortemTemplateGoogleDocsPostmortemSettingsArgs
    Settings for a postmortem template stored in Google Docs. Required when location is google*docs.
    is_default bool
    Whether this template is a default for its incident type. The API stores a timestamp; the effective default for an incident type is the template with the most recent default timestamp.
    location str
    The location where the postmortem is created and stored. Valid values are: datadognotebooks, confluence, googledocs. Defaults to datadog_notebooks.
    incidentType String
    The ID of the incident type this template is associated with. Immutable after creation.
    name String
    The name of the template.
    confluencePostmortemSettings Property Map
    Settings for a postmortem template stored in Confluence. Required when location is confluence.
    content String
    The templated content of the postmortem, supporting Markdown and incident template variables.
    googleDocsPostmortemSettings Property Map
    Settings for a postmortem template stored in Google Docs. Required when location is google*docs.
    isDefault Boolean
    Whether this template is a default for its incident type. The API stores a timestamp; the effective default for an incident type is the template with the most recent default timestamp.
    location String
    The location where the postmortem is created and stored. Valid values are: datadognotebooks, confluence, googledocs. Defaults to datadog_notebooks.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the IncidentPostmortemTemplate resource produces the following output properties:

    Created string
    Timestamp when the template was created.
    Id string
    The provider-assigned unique ID for this managed resource.
    LastModifiedByUser string
    The ID of the user who last modified the template.
    Modified string
    Timestamp when the template was last modified.
    Created string
    Timestamp when the template was created.
    Id string
    The provider-assigned unique ID for this managed resource.
    LastModifiedByUser string
    The ID of the user who last modified the template.
    Modified string
    Timestamp when the template was last modified.
    created string
    Timestamp when the template was created.
    id string
    The provider-assigned unique ID for this managed resource.
    last_modified_by_user string
    The ID of the user who last modified the template.
    modified string
    Timestamp when the template was last modified.
    created String
    Timestamp when the template was created.
    id String
    The provider-assigned unique ID for this managed resource.
    lastModifiedByUser String
    The ID of the user who last modified the template.
    modified String
    Timestamp when the template was last modified.
    created string
    Timestamp when the template was created.
    id string
    The provider-assigned unique ID for this managed resource.
    lastModifiedByUser string
    The ID of the user who last modified the template.
    modified string
    Timestamp when the template was last modified.
    created str
    Timestamp when the template was created.
    id str
    The provider-assigned unique ID for this managed resource.
    last_modified_by_user str
    The ID of the user who last modified the template.
    modified str
    Timestamp when the template was last modified.
    created String
    Timestamp when the template was created.
    id String
    The provider-assigned unique ID for this managed resource.
    lastModifiedByUser String
    The ID of the user who last modified the template.
    modified String
    Timestamp when the template was last modified.

    Look up Existing IncidentPostmortemTemplate Resource

    Get an existing IncidentPostmortemTemplate 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?: IncidentPostmortemTemplateState, opts?: CustomResourceOptions): IncidentPostmortemTemplate
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            confluence_postmortem_settings: Optional[IncidentPostmortemTemplateConfluencePostmortemSettingsArgs] = None,
            content: Optional[str] = None,
            created: Optional[str] = None,
            google_docs_postmortem_settings: Optional[IncidentPostmortemTemplateGoogleDocsPostmortemSettingsArgs] = None,
            incident_type: Optional[str] = None,
            is_default: Optional[bool] = None,
            last_modified_by_user: Optional[str] = None,
            location: Optional[str] = None,
            modified: Optional[str] = None,
            name: Optional[str] = None) -> IncidentPostmortemTemplate
    func GetIncidentPostmortemTemplate(ctx *Context, name string, id IDInput, state *IncidentPostmortemTemplateState, opts ...ResourceOption) (*IncidentPostmortemTemplate, error)
    public static IncidentPostmortemTemplate Get(string name, Input<string> id, IncidentPostmortemTemplateState? state, CustomResourceOptions? opts = null)
    public static IncidentPostmortemTemplate get(String name, Output<String> id, IncidentPostmortemTemplateState state, CustomResourceOptions options)
    resources:  _:    type: datadog:IncidentPostmortemTemplate    get:      id: ${id}
    import {
      to = datadog_incident_postmortem_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.
    The following state arguments are supported:
    ConfluencePostmortemSettings IncidentPostmortemTemplateConfluencePostmortemSettings
    Settings for a postmortem template stored in Confluence. Required when location is confluence.
    Content string
    The templated content of the postmortem, supporting Markdown and incident template variables.
    Created string
    Timestamp when the template was created.
    GoogleDocsPostmortemSettings IncidentPostmortemTemplateGoogleDocsPostmortemSettings
    Settings for a postmortem template stored in Google Docs. Required when location is google*docs.
    IncidentType string
    The ID of the incident type this template is associated with. Immutable after creation.
    IsDefault bool
    Whether this template is a default for its incident type. The API stores a timestamp; the effective default for an incident type is the template with the most recent default timestamp.
    LastModifiedByUser string
    The ID of the user who last modified the template.
    Location string
    The location where the postmortem is created and stored. Valid values are: datadognotebooks, confluence, googledocs. Defaults to datadog_notebooks.
    Modified string
    Timestamp when the template was last modified.
    Name string
    The name of the template.
    ConfluencePostmortemSettings IncidentPostmortemTemplateConfluencePostmortemSettingsArgs
    Settings for a postmortem template stored in Confluence. Required when location is confluence.
    Content string
    The templated content of the postmortem, supporting Markdown and incident template variables.
    Created string
    Timestamp when the template was created.
    GoogleDocsPostmortemSettings IncidentPostmortemTemplateGoogleDocsPostmortemSettingsArgs
    Settings for a postmortem template stored in Google Docs. Required when location is google*docs.
    IncidentType string
    The ID of the incident type this template is associated with. Immutable after creation.
    IsDefault bool
    Whether this template is a default for its incident type. The API stores a timestamp; the effective default for an incident type is the template with the most recent default timestamp.
    LastModifiedByUser string
    The ID of the user who last modified the template.
    Location string
    The location where the postmortem is created and stored. Valid values are: datadognotebooks, confluence, googledocs. Defaults to datadog_notebooks.
    Modified string
    Timestamp when the template was last modified.
    Name string
    The name of the template.
    confluence_postmortem_settings object
    Settings for a postmortem template stored in Confluence. Required when location is confluence.
    content string
    The templated content of the postmortem, supporting Markdown and incident template variables.
    created string
    Timestamp when the template was created.
    google_docs_postmortem_settings object
    Settings for a postmortem template stored in Google Docs. Required when location is google*docs.
    incident_type string
    The ID of the incident type this template is associated with. Immutable after creation.
    is_default bool
    Whether this template is a default for its incident type. The API stores a timestamp; the effective default for an incident type is the template with the most recent default timestamp.
    last_modified_by_user string
    The ID of the user who last modified the template.
    location string
    The location where the postmortem is created and stored. Valid values are: datadognotebooks, confluence, googledocs. Defaults to datadog_notebooks.
    modified string
    Timestamp when the template was last modified.
    name string
    The name of the template.
    confluencePostmortemSettings IncidentPostmortemTemplateConfluencePostmortemSettings
    Settings for a postmortem template stored in Confluence. Required when location is confluence.
    content String
    The templated content of the postmortem, supporting Markdown and incident template variables.
    created String
    Timestamp when the template was created.
    googleDocsPostmortemSettings IncidentPostmortemTemplateGoogleDocsPostmortemSettings
    Settings for a postmortem template stored in Google Docs. Required when location is google*docs.
    incidentType String
    The ID of the incident type this template is associated with. Immutable after creation.
    isDefault Boolean
    Whether this template is a default for its incident type. The API stores a timestamp; the effective default for an incident type is the template with the most recent default timestamp.
    lastModifiedByUser String
    The ID of the user who last modified the template.
    location String
    The location where the postmortem is created and stored. Valid values are: datadognotebooks, confluence, googledocs. Defaults to datadog_notebooks.
    modified String
    Timestamp when the template was last modified.
    name String
    The name of the template.
    confluencePostmortemSettings IncidentPostmortemTemplateConfluencePostmortemSettings
    Settings for a postmortem template stored in Confluence. Required when location is confluence.
    content string
    The templated content of the postmortem, supporting Markdown and incident template variables.
    created string
    Timestamp when the template was created.
    googleDocsPostmortemSettings IncidentPostmortemTemplateGoogleDocsPostmortemSettings
    Settings for a postmortem template stored in Google Docs. Required when location is google*docs.
    incidentType string
    The ID of the incident type this template is associated with. Immutable after creation.
    isDefault boolean
    Whether this template is a default for its incident type. The API stores a timestamp; the effective default for an incident type is the template with the most recent default timestamp.
    lastModifiedByUser string
    The ID of the user who last modified the template.
    location string
    The location where the postmortem is created and stored. Valid values are: datadognotebooks, confluence, googledocs. Defaults to datadog_notebooks.
    modified string
    Timestamp when the template was last modified.
    name string
    The name of the template.
    confluence_postmortem_settings IncidentPostmortemTemplateConfluencePostmortemSettingsArgs
    Settings for a postmortem template stored in Confluence. Required when location is confluence.
    content str
    The templated content of the postmortem, supporting Markdown and incident template variables.
    created str
    Timestamp when the template was created.
    google_docs_postmortem_settings IncidentPostmortemTemplateGoogleDocsPostmortemSettingsArgs
    Settings for a postmortem template stored in Google Docs. Required when location is google*docs.
    incident_type str
    The ID of the incident type this template is associated with. Immutable after creation.
    is_default bool
    Whether this template is a default for its incident type. The API stores a timestamp; the effective default for an incident type is the template with the most recent default timestamp.
    last_modified_by_user str
    The ID of the user who last modified the template.
    location str
    The location where the postmortem is created and stored. Valid values are: datadognotebooks, confluence, googledocs. Defaults to datadog_notebooks.
    modified str
    Timestamp when the template was last modified.
    name str
    The name of the template.
    confluencePostmortemSettings Property Map
    Settings for a postmortem template stored in Confluence. Required when location is confluence.
    content String
    The templated content of the postmortem, supporting Markdown and incident template variables.
    created String
    Timestamp when the template was created.
    googleDocsPostmortemSettings Property Map
    Settings for a postmortem template stored in Google Docs. Required when location is google*docs.
    incidentType String
    The ID of the incident type this template is associated with. Immutable after creation.
    isDefault Boolean
    Whether this template is a default for its incident type. The API stores a timestamp; the effective default for an incident type is the template with the most recent default timestamp.
    lastModifiedByUser String
    The ID of the user who last modified the template.
    location String
    The location where the postmortem is created and stored. Valid values are: datadognotebooks, confluence, googledocs. Defaults to datadog_notebooks.
    modified String
    Timestamp when the template was last modified.
    name String
    The name of the template.

    Supporting Types

    IncidentPostmortemTemplateConfluencePostmortemSettings, IncidentPostmortemTemplateConfluencePostmortemSettingsArgs

    AccountId string
    The ID of the Confluence account, a Datadog connected-account UUID (e.g. 3f9b1c2a-8d4e-4a11-9c2f-0b7e5d6a1f23).
    ParentId string
    The ID of the parent Confluence page under which postmortems are created: a numeric page ID (e.g. 393217), not a page path.
    SpaceId string
    The Confluence space key (e.g. ENG), not a numeric space ID.
    AccountId string
    The ID of the Confluence account, a Datadog connected-account UUID (e.g. 3f9b1c2a-8d4e-4a11-9c2f-0b7e5d6a1f23).
    ParentId string
    The ID of the parent Confluence page under which postmortems are created: a numeric page ID (e.g. 393217), not a page path.
    SpaceId string
    The Confluence space key (e.g. ENG), not a numeric space ID.
    account_id string
    The ID of the Confluence account, a Datadog connected-account UUID (e.g. 3f9b1c2a-8d4e-4a11-9c2f-0b7e5d6a1f23).
    parent_id string
    The ID of the parent Confluence page under which postmortems are created: a numeric page ID (e.g. 393217), not a page path.
    space_id string
    The Confluence space key (e.g. ENG), not a numeric space ID.
    accountId String
    The ID of the Confluence account, a Datadog connected-account UUID (e.g. 3f9b1c2a-8d4e-4a11-9c2f-0b7e5d6a1f23).
    parentId String
    The ID of the parent Confluence page under which postmortems are created: a numeric page ID (e.g. 393217), not a page path.
    spaceId String
    The Confluence space key (e.g. ENG), not a numeric space ID.
    accountId string
    The ID of the Confluence account, a Datadog connected-account UUID (e.g. 3f9b1c2a-8d4e-4a11-9c2f-0b7e5d6a1f23).
    parentId string
    The ID of the parent Confluence page under which postmortems are created: a numeric page ID (e.g. 393217), not a page path.
    spaceId string
    The Confluence space key (e.g. ENG), not a numeric space ID.
    account_id str
    The ID of the Confluence account, a Datadog connected-account UUID (e.g. 3f9b1c2a-8d4e-4a11-9c2f-0b7e5d6a1f23).
    parent_id str
    The ID of the parent Confluence page under which postmortems are created: a numeric page ID (e.g. 393217), not a page path.
    space_id str
    The Confluence space key (e.g. ENG), not a numeric space ID.
    accountId String
    The ID of the Confluence account, a Datadog connected-account UUID (e.g. 3f9b1c2a-8d4e-4a11-9c2f-0b7e5d6a1f23).
    parentId String
    The ID of the parent Confluence page under which postmortems are created: a numeric page ID (e.g. 393217), not a page path.
    spaceId String
    The Confluence space key (e.g. ENG), not a numeric space ID.

    IncidentPostmortemTemplateGoogleDocsPostmortemSettings, IncidentPostmortemTemplateGoogleDocsPostmortemSettingsArgs

    AccountId string
    The ID of the Google Drive account, a Datadog connected-account UUID (e.g. a1b2c3d4-e5f6-4789-8abc-1234567890ab).
    ParentFolderId string
    The Google Drive folder ID where postmortems are created, taken from the folder URL (e.g. 1eCqLAKQqRHt49J2aqQLGUcnPMzGHkt2B).
    AccountId string
    The ID of the Google Drive account, a Datadog connected-account UUID (e.g. a1b2c3d4-e5f6-4789-8abc-1234567890ab).
    ParentFolderId string
    The Google Drive folder ID where postmortems are created, taken from the folder URL (e.g. 1eCqLAKQqRHt49J2aqQLGUcnPMzGHkt2B).
    account_id string
    The ID of the Google Drive account, a Datadog connected-account UUID (e.g. a1b2c3d4-e5f6-4789-8abc-1234567890ab).
    parent_folder_id string
    The Google Drive folder ID where postmortems are created, taken from the folder URL (e.g. 1eCqLAKQqRHt49J2aqQLGUcnPMzGHkt2B).
    accountId String
    The ID of the Google Drive account, a Datadog connected-account UUID (e.g. a1b2c3d4-e5f6-4789-8abc-1234567890ab).
    parentFolderId String
    The Google Drive folder ID where postmortems are created, taken from the folder URL (e.g. 1eCqLAKQqRHt49J2aqQLGUcnPMzGHkt2B).
    accountId string
    The ID of the Google Drive account, a Datadog connected-account UUID (e.g. a1b2c3d4-e5f6-4789-8abc-1234567890ab).
    parentFolderId string
    The Google Drive folder ID where postmortems are created, taken from the folder URL (e.g. 1eCqLAKQqRHt49J2aqQLGUcnPMzGHkt2B).
    account_id str
    The ID of the Google Drive account, a Datadog connected-account UUID (e.g. a1b2c3d4-e5f6-4789-8abc-1234567890ab).
    parent_folder_id str
    The Google Drive folder ID where postmortems are created, taken from the folder URL (e.g. 1eCqLAKQqRHt49J2aqQLGUcnPMzGHkt2B).
    accountId String
    The ID of the Google Drive account, a Datadog connected-account UUID (e.g. a1b2c3d4-e5f6-4789-8abc-1234567890ab).
    parentFolderId String
    The Google Drive folder ID where postmortems are created, taken from the folder URL (e.g. 1eCqLAKQqRHt49J2aqQLGUcnPMzGHkt2B).

    Package Details

    Repository
    Datadog pulumi/pulumi-datadog
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the datadog Terraform Provider.
    datadog logo
    Viewing docs for Datadog v5.10.0
    published on Thursday, Jul 30, 2026 by Pulumi

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial