├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── backup-plan.tf ├── backup.tf ├── iam.tf ├── lambda.py ├── lambda.tf ├── provider.tf ├── ses.tf └── variables.tf /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/aws-backup/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/aws-backup/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/aws-backup/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/aws-backup/HEAD/README.md -------------------------------------------------------------------------------- /backup-plan.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/aws-backup/HEAD/backup-plan.tf -------------------------------------------------------------------------------- /backup.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/aws-backup/HEAD/backup.tf -------------------------------------------------------------------------------- /iam.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/aws-backup/HEAD/iam.tf -------------------------------------------------------------------------------- /lambda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/aws-backup/HEAD/lambda.py -------------------------------------------------------------------------------- /lambda.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/aws-backup/HEAD/lambda.tf -------------------------------------------------------------------------------- /provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/aws-backup/HEAD/provider.tf -------------------------------------------------------------------------------- /ses.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/aws-backup/HEAD/ses.tf -------------------------------------------------------------------------------- /variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/aws-backup/HEAD/variables.tf --------------------------------------------------------------------------------