You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
backup_retention = 7 # Keep seven days of backs (AMIs & Snapshots)
33
34
schedule_expression = "cron(0 20 * * ? *)" # Backup at 8:00pm UTC Daily
35
+
36
+
default_tags = {
37
+
Owner = "Cloud Engineering"
38
+
}
34
39
}
35
40
```
36
41
@@ -45,3 +50,4 @@ module "ami_scheduled_backup" {
45
50
|`backup_tag`|_Optional_, Specify the tag that will be assigned to EC2 instances that are to be backed up (defaults to _Backup_). **Note:** The Tag value **must** be set to **yes** in order for the backup to be created.|
46
51
|`backup_retention`|_Optional_, Specify the number of days to keep the AMI and Snapshots (Defaults to 30).|
47
52
|`schedule_expression`|_Required_, Scheduling expression for triggering the Lambda Function using CloudWatch events. For example, cron(0 20 * * ? *) or rate(5 minutes).|
53
+
|`default_tags`|_Optional_, default tags to be applied to all resources.|
0 commit comments