Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/silinternational/terraform-aws-backup
manage AWS Backup and related configuration
https://github.com/silinternational/terraform-aws-backup
Last synced: about 1 month ago
JSON representation
manage AWS Backup and related configuration
- Host: GitHub
- URL: https://github.com/silinternational/terraform-aws-backup
- Owner: silinternational
- License: mit
- Created: 2024-08-27T10:49:17.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-11-04T10:04:31.000Z (about 2 months ago)
- Last Synced: 2024-11-04T11:17:31.690Z (about 2 months ago)
- Language: HCL
- Size: 19.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Terraform Module for AWS Backup
This module is used to create scheduled backups of AWS resources. It was previously published at https://github.com/silinternational/terraform-modules/aws/backup/rds.
## Resources Managed
* KMS Encryption key
* Backup Vault
* Backup Plan
* Backup Selection
* IAM Role and Policy
* SNS Topic and Policy
* Backup Vault NotificationsThis module is published in [Terraform Registry](https://registry.terraform.io/modules/silinternational/backup/aws/latest).
## Example Usage
```hcl
module "backup_rds" {
source = "silinternational/backup/aws"
app_name = var.app_name
app_env = var.app_env
source_arns = ["arn:aws:rds:us-east-1:123456789012:db:my-db"]
backup_schedule = "cron(11 1 * * ? *)"
notification_events = ["BACKUP_JOB_STARTED", "BACKUP_JOB_COMPLETED", "BACKUP_JOB_FAILED", "RESTORE_JOB_COMPLETED"]
}
```