We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
terraform 0.11.8 datadog provider 1.3.0
datadog monitor will never be created/updated with non-default value for new_host_delay - new_host_delay is ALWAYS set to the default value of 300
new_host_delay
300
xxx:/conf/site# terraform -v Terraform v0.11.8 + provider.aws v1.35.0 + provider.datadog v1.3.0
resource "datadog_monitor" "mailgun_endpoint_health_check" { name = "Mailgun Endpoint Health Check (${var.site})" type = "service check" tags = "${concat("${local.monitor_tags}", "${list("service:mailgun")}")}" query = <<QUERY "supernova.health_check.mailgun.endpoint".over("site:${var.site}").by("site","endpoint","orgid").last(4).count_by_status() QUERY message = "the_message" escalation_message = "the_escalation_message" thresholds { warning = "${var.mailgun_warn_threshold}" critical = "${var.mailgun_critical_threshold}" ok = "${var.mailgun_ok_threshold}" } include_tags = true locked = false notify_audit = false notify_no_data = true no_data_timeframe = 45 renotify_interval = 30 timeout_h = 0 new_host_delay = 0
datadog monitor should be created/updated with new_host_delay = 0
new_host_delay = 0
datadog monitor is always created/updated with new_host_delay = 300 (300 being the default)
new_host_delay = 300
Please list the steps required to reproduce the issue, for example:
terraform apply
The text was updated successfully, but these errors were encountered:
Fixed in #101
Sorry, something went wrong.
No branches or pull requests
datadog monitor will never be created/updated with non-default value for
new_host_delay
-new_host_delay
is ALWAYS set to the default value of300
Terraform Version
Affected Resource(s)
Terraform Configuration Files
Expected Behavior
datadog monitor should be created/updated with
new_host_delay = 0
Actual Behavior
datadog monitor is always created/updated with
new_host_delay = 300
(300 being the default)Steps to Reproduce
Please list the steps required to reproduce the issue, for example:
terraform apply
terraform apply
terraform apply
... etc
References
The text was updated successfully, but these errors were encountered: