Creates an AWS Backup Report Plan with specified formats, S3 bucket, and report settings.

Terraform Template

resource "aws_backup_report_plan" "example" {
  description = "example description"
  name = "example_name"

  report_delivery_channel {
    formats = ["CSV", "JSON"]
    s3_bucket_name = "example-bucket-name"
  }

  report_setting {
    report_template = "RESTORE_JOB_REPORT"
  }

  tags = {
    Name = "Example Report Plan"
  }
}