azurerm_datadog_monitor_sso_configuration

Manages SingleSignOn on the datadog Monitor.

Example Usage

Enabling SSO on monitor

resource "azurerm_resource_group" "example" {
  name     = "example-datadog"
  location = "West US 2"
}

resource "azurerm_datadog_monitor" "example" {
  name                = "example-monitor"
  resource_group_name = azurerm_resource_group.example.name
  location            = azurerm_resource_group.example.location
  datadog_organization {
    api_key         = "XXXX"
    application_key = "XXXX"
  }
  user {
    name  = "Example"
    email = "abc@xyz.com"
  }
  sku_name = "Linked"
  identity {
    type = "SystemAssigned"
  }
}

resource "azurerm_datadog_monitor_sso_configuration" "example" {
  datadog_monitor_id        = azurerm_datadog_monitor.example.id
  single_sign_on_enabled    = "Enable"
  enterprise_application_id = "XXXX"
}

Arguments Reference

The following arguments are supported:


Attributes Reference

In addition to the Arguments listed above - the following Attributes are exported:

Timeouts

The timeouts block allows you to specify timeouts for certain actions:

Import

SingleSignOn on the Datadog Monitor can be imported using the signle sign on resource id, e.g.

```shell terraform import azurerm_datadog_monitor_sso_configuration.example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.Datadog/monitors/monitor1/singleSignOnConfigurations/default