aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Baines <mail@cbaines.net>2018-08-07 18:47:22 +0100
committerChristopher Baines <mail@cbaines.net>2018-08-07 18:47:22 +0100
commit5049cd87dfebd1bd124648655a0f41e891e34523 (patch)
tree52fb6d397c261cd8a9fc947cc41522c0ced53542
parent0c27a8077792d0a6695ef329af6d19424b4fc8c2 (diff)
downloadgovuk-mini-environment-admin-5049cd87dfebd1bd124648655a0f41e891e34523.tar
govuk-mini-environment-admin-5049cd87dfebd1bd124648655a0f41e891e34523.tar.gz
Up AWS root volume sizes
The PostgreSQL data takes over 70GB now, so up the overall root filesystem size to 150GB.
-rw-r--r--terraform/aws/backend/main.tf2
-rw-r--r--terraform/aws/mini_environment/main.tf2
2 files changed, 2 insertions, 2 deletions
diff --git a/terraform/aws/backend/main.tf b/terraform/aws/backend/main.tf
index ef85143..7fc8b0e 100644
--- a/terraform/aws/backend/main.tf
+++ b/terraform/aws/backend/main.tf
@@ -238,7 +238,7 @@ resource "aws_spot_instance_request" "main" {
spot_type = "one-time"
root_block_device {
- volume_size = "100"
+ volume_size = "150"
}
depends_on = ["aws_efs_mount_target.main"]
diff --git a/terraform/aws/mini_environment/main.tf b/terraform/aws/mini_environment/main.tf
index 7f2ebf6..40a8148 100644
--- a/terraform/aws/mini_environment/main.tf
+++ b/terraform/aws/mini_environment/main.tf
@@ -86,7 +86,7 @@ resource "aws_spot_instance_request" "main" {
spot_type = "one-time"
root_block_device {
- volume_size = "100"
+ volume_size = "150"
}
provisioner "file" {