-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #453 from communitiesuk/DT-280
DT-280 Change SES to use keys specific to application
- Loading branch information
Showing
10 changed files
with
42 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -70,7 +70,6 @@ module "delta_ses_user" { | |
ses_identity_arns = [module.ses_identity.arn] | ||
from_address_patterns = ["[email protected]"] | ||
environment = local.environment | ||
kms_key_arn = module.marklogic.deploy_user_kms_key_arn | ||
vpc_id = module.networking.vpc.id | ||
} | ||
|
||
|
@@ -80,7 +79,6 @@ module "cpm_ses_user" { | |
ses_identity_arns = [module.ses_identity.arn] | ||
from_address_patterns = ["[email protected]"] | ||
environment = local.environment | ||
kms_key_arn = module.marklogic.deploy_user_kms_key_arn | ||
vpc_id = module.networking.vpc.id | ||
} | ||
|
||
|
@@ -241,6 +239,7 @@ module "marklogic" { | |
# TODO DT-803 Reduce/remove this once we are happy with our testing on staging | ||
weekly_backup_bucket_retention_days = 60 | ||
iam_github_openid_connect_provider_arn = module.github_actions_openid_connect_provider.github_oidc_provider_arn | ||
ses_deploy_secret_arns = [module.delta_ses_user.deploy_secret_arn, module.cpm_ses_user.deploy_secret_arn] | ||
} | ||
|
||
module "gh_runner" { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -322,6 +322,7 @@ module "marklogic" { | |
ebs_backup_role_arn = module.ebs_backup.role_arn | ||
ebs_backup_completed_sns_topic_arn = module.ebs_backup.sns_topic_arn | ||
iam_github_openid_connect_provider_arn = data.aws_iam_openid_connect_provider.github.arn | ||
ses_deploy_secret_arns = [module.delta_ses_user.deploy_secret_arn, module.cpm_ses_user.deploy_secret_arn] | ||
} | ||
|
||
module "gh_runner" { | ||
|
@@ -391,7 +392,6 @@ module "delta_ses_user" { | |
ses_identity_arns = [module.ses_identity.arn] | ||
from_address_patterns = ["[email protected]"] | ||
environment = local.environment | ||
kms_key_arn = module.marklogic.deploy_user_kms_key_arn | ||
vpc_id = module.networking.vpc.id | ||
} | ||
|
||
|
@@ -401,7 +401,6 @@ module "cpm_ses_user" { | |
ses_identity_arns = [module.ses_identity.arn] | ||
from_address_patterns = ["[email protected]"] | ||
environment = local.environment | ||
kms_key_arn = module.marklogic.deploy_user_kms_key_arn | ||
vpc_id = module.networking.vpc.id | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters