1
0

enhance: updated module with suggestions from Qoder

This commit is contained in:
xpk
2026-04-11 00:13:55 +08:00
parent 355850fee9
commit 88396bceda
5 changed files with 83 additions and 9 deletions
@@ -0,0 +1,27 @@
module "aws-backup" {
source = "../"
backup_kms_key = "arn..."
daily-backup-cron = "cron(0 20 * * ? *)"
daily-backup-retention = 30
monthly-backup-cron = ""
monthly-backup-retention = 360
service-opt-in = {
"Aurora" : false,
"DynamoDB" : false,
"EBS" : false,
"EC2" : true,
"EFS" : true,
"FSx" : false,
"Redshift" : false,
"RDS" : true,
"VirtualMachine" : false,
"S3" : true,
"EKS" : false,
"CloudFormation" : false,
"Neptune" : false,
"Redshift Serverless" : false,
"SAP HANA on Amazon EC2" : false,
"Storage Gateway" : false
}
}