» Resource: aws_backup_selection
Manages selection conditions for AWS Backup plan resources.
» Example Usage
resource "aws_backup_selection" "example" {
plan_id = "${aws_backup_plan.example.id}"
name = "tf_example_backup_selection"
iam_role_arn = "arn:aws:iam::123456789012:role/service-role/AWSBackupDefaultServiceRole"
selection_tag {
type = "STRINGEQUALS"
key = "foo"
value = "bar"
}
resources = [
"arn:aws:ec2:us-east-1:123456789012:volume/"
]
}
» Argument Reference
The following arguments are supported:
-
name
- (Required) The display name of a resource selection document. -
plan_id
- (Required) The backup plan ID to be associated with the selection of resources. -
iam_role_arn
- (Required) The ARN of the IAM role that AWS Backup uses to authenticate when restoring and backing up the target resource. See the AWS Backup Developer Guide for additional information about using AWS managed policies or creating custom policies attached to the IAM role. -
selection_tag
- (Optional) Tag-based conditions used to specify a set of resources to assign to a backup plan. -
resources
- (Optional) An array of strings that either contain Amazon Resource Names (ARNs) or match patterns of resources to assign to a backup plan..
Tag conditions (selection_tag
) support the following:
-
type
- (Required) An operation, such asStringEquals
, that is applied to a key-value pair used to filter resources in a selection. -
key
- (Required) The key in a key-value pair. -
value
- (Required) The value in a key-value pair.
» Attributes Reference
In addition to all arguments above, the following attributes are exported:
-
id
- Backup Selection identifier