github.com/erriapo/terraform@v0.6.12-0.20160203182612-0340ea72354f/website/source/docs/providers/aws/r/route53_health_check.html.markdown (about)

     1  ---
     2  layout: "aws"
     3  page_title: "AWS: aws_route53_health_check"
     4  sidebar_current: "docs-aws-resource-route53-health-check"
     5  description: |-
     6    Provides a Route53 health check.
     7  ---
     8  # aws\_route53\_health\_check
     9  
    10  Provides a Route53 health check.
    11  
    12  ## Example Usage
    13  
    14  ```
    15  resource "aws_route53_health_check" "child1" {
    16    fqdn = "foobar.terraform.com"
    17    port = 80
    18    type = "HTTP"
    19    resource_path = "/"
    20    failure_threshold = "5"
    21    request_interval = "30"
    22  
    23    tags = {
    24      Name = "tf-test-health-check"
    25     }
    26  }
    27  
    28  resource "aws_route53_health_check" "foo" {
    29    type = "CALCULATED"
    30    child_health_threshold = 1
    31    child_healthchecks = ["${aws_route53_health_check.child1.id}"]
    32  
    33    tags = {
    34      Name = "tf-test-calculated-health-check"
    35     }
    36  }
    37  ```
    38  
    39  ## Argument Reference
    40  
    41  The following arguments are supported:
    42  
    43  * `fqdn` - (Optional) The fully qualified domain name of the endpoint to be checked.
    44  * `ip_address` - (Optional) The IP address of the endpoint to be checked.
    45  * `port` - (Optional) The port of the endpoint to be checked.
    46  * `type` - (Required) The protocol to use when performing health checks. Valid values are `HTTP`, `HTTPS`, `HTTP_STR_MATCH`, `HTTPS_STR_MATCH`, `TCP` and `CALCULATED`.
    47  * `failure_threshold` - (Required) The number of consecutive health checks that an endpoint must pass or fail.
    48  * `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.
    49  * `resource_path` - (Optional) The path that you want Amazon Route 53 to request when performing health checks.
    50  * `search_string` - (Optional) String searched in the first 5120 bytes of the response body for check to be considered healthy.
    51  * `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.
    52  * `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.
    53  * `child_healthchecks` - (Optional) For a specified parent health check, a list of HealthCheckId values for the associated child health checks.
    54  * `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
    55  * `tags` - (Optional) A mapping of tags to assign to the health check.
    56  
    57  At least one of either `fqdn` or `ip_address` must be specified.
    58