Provides an AWS Route 53 Recovery Readiness Recovery Group.
resource "aws_route53recoveryreadiness_recovery_group" "example" {
recovery_group_name = "my-high-availability-app"
}
The following arguments are required:
recovery_group_name
- (Required) A unique name describing the recovery group.The following argument are optional:
cells
- (Optional) List of cell arns to add as nested fault domains within this recovery grouptags
- (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 recovery grouptags_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 recovery groups using the recovery group name. For example:
import {
to = aws_route53recoveryreadiness_recovery_group.my-high-availability-app
id = "my-high-availability-app"
}
Using terraform import
, import Route53 Recovery Readiness recovery groups using the recovery group name. For example:
% terraform import aws_route53recoveryreadiness_recovery_group.my-high-availability-app my-high-availability-app