Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 0 additions & 45 deletions .github/actions/combine-dependabot-prs/action.yaml

This file was deleted.

111 changes: 0 additions & 111 deletions .github/actions/combine-dependabot-prs/combine-dependabot-prs.js

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ data "aws_iam_policy_document" "backup_key_policy" {
sid = "EnableIAMUserPermissions"
principals {
type = "AWS"
identifiers = ["arn:aws:iam::${data.aws_caller_identity.current.account_id}:root", data.aws_caller_identity.current.arn]
identifiers = ["arn:aws:iam::${data.aws_caller_identity.current.account_id}:root", "arn:aws:sts::${data.aws_caller_identity.current.account_id}:assumed-role/GitHub_Deploy/*"]
}
actions = ["kms:*"]
resources = ["*"]
Expand Down
4 changes: 2 additions & 2 deletions infrastructure/terraform/modules/s3bucket/locals.tf
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ locals {
lifecycle_rules = [for lifecycle_rule in var.lifecycle_rules : merge(local.lifecycle_rule_defaults, lifecycle_rule)]

notification_event_defaults = {
eventbridge = false

# Check for value of tag in lower case, compare to string "true" and if true, enable eventbridge notifications
eventbridge = lower(lookup(var.default_tags, "NHSE-Enable-S3-Backup-Acct", "")) == "true"
lambda_function = {}
queue = {}
topic = {}
Expand Down
Loading