Ensure EFS file systems are included in backup plans to mitigate risks.
Rule | EFS file systems should be in a backup plan |
Framework | Federal Financial Institutions Examination Council (FFIEC) |
Severity | ✔ High |
EFS File System Backup Plan for FFIEC Compliance
Overview
The Federal Financial Institutions Examination Council (FFIEC) has guidelines that require financial institutions to have robust backup and disaster recovery plans in place. As part of these guidelines, Amazon Elastic File System (EFS) used by financial institutions should be regularly backed up to ensure data integrity and continuity of business operations in the event of data loss.
EFS Backup Rule Details
Criteria:
Troubleshooting Steps
Verifying Backup Plan Configurations:
Investigating Backup Failures:
Common Problems:
Necessary Automation Code
AWS CLI Commands
Create EFS Backup Plan
aws backup create-backup-plan --backup-plan '{ "BackupPlanName": "EFS-Backup-Plan", "Rules": [ { "RuleName": "DailyEFSBackupRule", "TargetBackupVaultName": "MyBackupVault", "ScheduleExpression": "cron(0 0 * * ? *)", "StartWindowMinutes": 60, "CompletionWindowMinutes": 10080, "Lifecycle": { "MoveToColdStorageAfterDays": 30, "DeleteAfterDays": 3650 }, "RecoveryPointTags": { "CreatedBy": "AWS Backup" } } ] }'
Assign Resources to the Backup Plan
aws backup create-backup-selection --backup-plan-id "<backup_plan_id>" --backup-selection '{ "SelectionName": "EFS-Backup-Selection", "IamRoleArn": "arn:aws:iam::123456789012:role/service-role/AWSBackupDefaultServiceRole", "Resources": [ "arn:aws:elasticfilesystem:region:account-id:file-system/fs-id" ] }'
Replace
<backup_plan_id>
with your actual backup plan ID, region
with your AWS region, account-id
with your AWS account ID, and fs-id
with your file system ID(s).Step by Step Guide for Remediation
By integrating these practices, financial institutions can ensure that their EFS file systems meet the FFIEC backup requirements while also optimizing their environment for better search engine visibility without compromising on conciseness and relevance.