What is the name of the domain?
What is the error number?
17003
What is the error message?
Invalid object selections
What is the issue you’re encountering
I can’t create the notification with the terraform…
What steps have you taken to resolve the issue?
- read the documentation Terraform Registry
- Created the resource manually successfully
- Asked the Enterprise support, more than one time
What are the steps to reproduce the issue?
I want to apply following code, this is the plan output:
resource "cloudflare_notification_policy" "cloudflare_notifications" {
account_id = "account_id"
alert_type = "traffic_anomalies_alert"
created = (known after apply)
description = "Traffic anomalies detected - development"
enabled = true
id = (known after apply)
modified = (known after apply)
name = "traffic_anomalies_alert_development"
email_integration {
id = "support@invalid_domain.de"
name = null
}
filters {
target_zone_name = [
+ "invalid_domain.de",
]
}
}
Could you help me to write a valid code for this notification?
Thank you in advance