DataDog / terraform-provider-datadog

Terraform Datadog provider
https://www.terraform.io/docs/providers/datadog/
Mozilla Public License 2.0
399 stars 375 forks source link

[datadog_organization_settings] Add Security Contacts support #2396

Closed alexandre-pocquet closed 3 months ago

alexandre-pocquet commented 4 months ago

Security Contacts can be configured on a Datadog organization to receive security notification. Currently users must manually set this setting in the Datadog web UI.

This pull request makes it possible to do it from Terraform as well within a datadog_organization_settings resource.

Example:

resource datadog_organization_settings my_org {
    name = "My Organization"
    security_contacts = ["foo@example.org", "bar@example.org"]
}