Provides an AWS Route 53 Recovery Readiness Readiness Check.
resource "aws_route53recoveryreadiness_readiness_check" "example" {
readiness_check_name = my-cw-alarm-check
resource_set_name = my-cw-alarm-set
}
The following arguments are required:
readiness_check_name
- (Required) Unique name describing the readiness check.resource_set_name
- (Required) Name describing the resource set that will be monitored for readiness.The following arguments are optional:
tags
- (Optional) Key-value mapping of resource tags. If configured with a provider default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.This resource exports the following attributes in addition to the arguments above:
arn
- ARN of the readiness_checktags_all
- Map of tags assigned to the resource, including those inherited from the provider default_tags
configuration block.delete
- (Default 5m
)In Terraform v1.5.0 and later, use an import
block to import Route53 Recovery Readiness readiness checks using the readiness check name. For example:
import {
to = aws_route53recoveryreadiness_readiness_check.my-cw-alarm-check
id = "example"
}
Using terraform import
, import Route53 Recovery Readiness readiness checks using the readiness check name. For example:
% terraform import aws_route53recoveryreadiness_readiness_check.my-cw-alarm-check example