Etienne Carriere

Results 18 comments of Etienne Carriere

The `restricted_roles` is indeed [limited to roles](https://registry.terraform.io/providers/DataDog/datadog/latest/docs/resources/monitor#restricted_roles-1). The future of ACL for Datadog objects is [Granular Access Control](https://docs.datadoghq.com/account_management/rbac/granular_access/). (use `datadog_restriction_policy` resource to interact with Granular Access Control API) We are...

Hello @jeff-knurek, As the field `daily_limit_warning_threshold_percentage` is Optional, the hint to not set it in a module is to assign the null value. In this case, terraform will consider the...

After looking with the synthetics team, there are indeed some important issues with restricted_roles . As it is a deprecated feature at Datadog in favor of an unified [Granular Access](https://docs.datadoghq.com/account_management/rbac/granular_access/)...

Example for `datadog_synthetics_private_location` ```hcl resource "datadog_synthetics_private_location" "private_location" { name = "First private location" description = "Description of the private location" tags = ["foo:bar", "env:test"] } resource "datadog_restriction_policy" "foo" { resource_id...

Example for `datadog_synthetics_test` : ```hcl resource "datadog_synthetics_test" "test_uptime" { name = "An Uptime test on example.org" type = "api" subtype = "http" [...] } resource "datadog_restriction_policy" "test-api" { resource_id =...

`restricted_roles` is officially deprecated (and documented as such) The recommended way is using `datadog_restriction_policy` resource that is the new method to handle granual access control for datadog resources : https://docs.datadoghq.com/account_management/rbac/granular_access/

Hello, When you change an element in a browser step, you need to use the [force_element_update](https://registry.terraform.io/providers/DataDog/datadog/latest/docs/resources/synthetics_test#force_element_update-1) option to ensure the change is applied. This should help reflect the changes without...