diff --git a/infrastructure/modules/aws-backup-source/README.md b/infrastructure/modules/aws-backup-source/README.md
index 98ff410..1b30063 100644
--- a/infrastructure/modules/aws-backup-source/README.md
+++ b/infrastructure/modules/aws-backup-source/README.md
@@ -62,7 +62,7 @@ No requirements.
| [default\_tags](#input\_default\_tags) | Default tag map for application to all taggable resources in the module | `map(string)` | `{}` | no |
| [environment](#input\_environment) | The name of the environment where AWS Backup is configured. | `string` | n/a | yes |
| [management\_ci\_role\_arn](#input\_management\_ci\_role\_arn) | ARN of Terraform role used to deploy to account | `string` | n/a | yes |
-| [name](#input\_name) | The variable encapsulating the name of this bucket | `string` | n/a | yes |
+| [name](#input\_name) | The variable encapsulating the name of this bucket | `string` | `"backup"` | no |
| [notification\_kms\_key](#input\_notification\_kms\_key) | The ARN of the bootstrap KMS key used for encryption at rest of the SNS topic. | `string` | n/a | yes |
| [notifications\_target\_email\_address](#input\_notifications\_target\_email\_address) | The email address to which backup notifications will be sent via SNS. | `string` | `""` | no |
| [principal\_org\_id](#input\_principal\_org\_id) | The AWS Org ID (numeric) | `string` | n/a | yes |
diff --git a/infrastructure/modules/aws-backup-source/iam_role_backup.tf b/infrastructure/modules/aws-backup-source/iam_role_backup.tf
index fc71743..fe8d00a 100644
--- a/infrastructure/modules/aws-backup-source/iam_role_backup.tf
+++ b/infrastructure/modules/aws-backup-source/iam_role_backup.tf
@@ -35,3 +35,30 @@ resource "aws_iam_role_policy_attachment" "s3_backup" {
policy_arn = "arn:aws:iam::aws:policy/AWSBackupServiceRolePolicyForS3Backup"
role = aws_iam_role.backup.name
}
+
+
+resource "aws_iam_role_policy_attachment" "backup_additional" {
+ role = aws_iam_role.backup.name
+ policy_arn = aws_iam_policy.backup_additional.arn
+}
+
+resource "aws_iam_policy" "backup_additional" {
+ name = "${local.csi}-backup_additional"
+ description = "Additional Backup Actions"
+ policy = data.aws_iam_policy_document.backup_additional.json
+}
+
+data "aws_iam_policy_document" "backup_additional" {
+ statement {
+ effect = "Allow"
+
+ actions = [
+ "backup:TagResource",
+ ]
+
+ #trivy:ignore:aws-iam-no-policy-wildcards
+ resources = [
+ "*",
+ ]
+ }
+}
diff --git a/infrastructure/modules/aws-backup-source/variables.tf b/infrastructure/modules/aws-backup-source/variables.tf
index 8922fd9..9a6f8a1 100644
--- a/infrastructure/modules/aws-backup-source/variables.tf
+++ b/infrastructure/modules/aws-backup-source/variables.tf
@@ -16,6 +16,7 @@ variable "component" {
variable "name" {
type = string
description = "The variable encapsulating the name of this bucket"
+ default = "backup"
}
variable "default_tags" {