W3cubDocs

/Terraform

aws_route53_health_check

Provides a Route53 health check.

Example Usage

resource "aws_route53_health_check" "child1" {
  fqdn              = "foobar.terraform.com"
  port              = 80
  type              = "HTTP"
  resource_path     = "/"
  failure_threshold = "5"
  request_interval  = "30"

  tags = {
    Name = "tf-test-health-check"
  }
}

resource "aws_route53_health_check" "foo" {
  type                   = "CALCULATED"
  child_health_threshold = 1
  child_healthchecks     = ["${aws_route53_health_check.child1.id}"]

  tags = {
    Name = "tf-test-calculated-health-check"
  }
}

CloudWatch Alarm Example

resource "aws_cloudwatch_metric_alarm" "foobar" {
  alarm_name          = "terraform-test-foobar5"
  comparison_operator = "GreaterThanOrEqualToThreshold"
  evaluation_periods  = "2"
  metric_name         = "CPUUtilization"
  namespace           = "AWS/EC2"
  period              = "120"
  statistic           = "Average"
  threshold           = "80"
  alarm_description   = "This metric monitors ec2 cpu utilization"
}

resource "aws_route53_health_check" "foo" {
  type                            = "CLOUDWATCH_METRIC"
  cloudwatch_alarm_name           = "${aws_cloudwatch_metric_alarm.foobar.alarm_name}"
  cloudwatch_alarm_region         = "us-west-2"
  insufficient_data_health_status = "Healthy"
}

Argument Reference

The following arguments are supported:

  • reference_name - (Optional) This is a reference name used in Caller Reference (helpful for identifying single health_check set amongst others)
  • fqdn - (Optional) The fully qualified domain name of the endpoint to be checked.
  • ip_address - (Optional) The IP address of the endpoint to be checked.
  • port - (Optional) The port of the endpoint to be checked.
  • type - (Required) The protocol to use when performing health checks. Valid values are HTTP, HTTPS, HTTP_STR_MATCH, HTTPS_STR_MATCH, TCP, CALCULATED and CLOUDWATCH_METRIC.
  • failure_threshold - (Required) The number of consecutive health checks that an endpoint must pass or fail.
  • request_interval - (Required) The number of seconds between the time that Amazon Route 53 gets a response from your endpoint and the time that it sends the next health-check request.
  • resource_path - (Optional) The path that you want Amazon Route 53 to request when performing health checks.
  • search_string - (Optional) String searched in the first 5120 bytes of the response body for check to be considered healthy.
  • measure_latency - (Optional) A Boolean value that indicates whether you want Route 53 to measure the latency between health checkers in multiple AWS regions and your endpoint and to display CloudWatch latency graphs in the Route 53 console.
  • invert_healthcheck - (Optional) A boolean value that indicates whether the status of health check should be inverted. For example, if a health check is healthy but Inverted is True , then Route 53 considers the health check to be unhealthy.
  • enable_sni - (Optional) A boolean value that indicates whether Route53 should send the fqdn to the endpoint when performing the health check. This defaults to AWS' defaults: when the type is "HTTPS" enable_sni defaults to true, when type is anything else enable_sni defaults to false.
  • child_healthchecks - (Optional) For a specified parent health check, a list of HealthCheckId values for the associated child health checks.
  • child_health_threshold - (Optional) The minimum number of child health checks that must be healthy for Route 53 to consider the parent health check to be healthy. Valid values are integers between 0 and 256, inclusive
  • cloudwatch_alarm_name - (Optional) The name of the CloudWatch alarm.
  • cloudwatch_alarm_region - (Optional) The CloudWatchRegion that the CloudWatch alarm was created in.
  • insufficient_data_health_status - (Optional) The status of the health check when CloudWatch has insufficient data about the state of associated alarm. Valid values are Healthy , Unhealthy and LastKnownStatus.
  • regions - (Optional) A list of AWS regions that you want Amazon Route 53 health checkers to check the specified endpoint from.

  • tags - (Optional) A mapping of tags to assign to the health check.

At least one of either fqdn or ip_address must be specified.

Import

Route53 Health Checks can be imported using the health check id, e.g.

$ terraform import aws_route53_health_check.http_check abcdef11-2222-3333-4444-555555fedcba

© 2018 HashiCorpLicensed under the MPL 2.0 License.
https://www.terraform.io/docs/providers/aws/r/route53_health_check.html