Provides a Datadog webhooks custom variable resource. This can be used to create and manage Datadog webhooks custom variables.
# Create a new Datadog webhook custom variable.
resource "datadog_webhook_custom_variable" "foo" {
name = "EXAMPLE_VARIABLE"
value = "EXAMPLE-VALUE"
is_secret = true
}
is_secret
(Boolean) Whether the custom variable is secret or not.name
(String) The name of the variable. It corresponds with <CUSTOM_VARIABLE_NAME>
.value
(String, Sensitive) The value of the custom variable.id
(String) The ID of this resource.Import is supported using the following syntax:
terraform import datadog_webhook_custom_variable.foo EXAMPLE_VARIABLE