Skip to content

Commit

Permalink
Merge pull request #8690 from ministryofjustice/ELM-3049-temporary-in…
Browse files Browse the repository at this point in the history
…crease-in-memory-and-permissions-ec2

provisioned temporary higher memory and permissions
  • Loading branch information
luke-a-williams authored Nov 15, 2024
2 parents 4c90502 + fff50dc commit 20c5336
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -118,10 +118,11 @@ data "aws_iam_policy_document" "zip_s3_policy" {
]
}
statement {
sid = "AllowReadDataStore"
sid = "AllowReadAndPutDataStore"
effect = "Allow"
actions = [
"s3:GetObject",
"s3:PutObject"
]
resources = [
"${module.s3-data-bucket.bucket.arn}/*",
Expand Down Expand Up @@ -190,7 +191,7 @@ module "zip_bastion" {
subnet_set = local.subnet_set
environment = local.environment
region = "eu-west-2"
volume_size = 96
volume_size = 250
# tags
tags_common = local.tags
tags_prefix = terraform.workspace
Expand Down

0 comments on commit 20c5336

Please sign in to comment.