aboutsummaryrefslogtreecommitdiff
path: root/terraform
diff options
context:
space:
mode:
authorChristopher Baines <mail@cbaines.net>2018-06-03 14:47:10 +0100
committerChristopher Baines <mail@cbaines.net>2018-06-03 14:47:10 +0100
commitbabfdfcb17908f61f931b8f44b97622948be602a (patch)
tree680626776b5e44d14eaf8cbb2d25241447b8eb95 /terraform
parentc087576f60213b3dce45074b79b13c752f070d5c (diff)
downloadgovuk-mini-environment-admin-babfdfcb17908f61f931b8f44b97622948be602a.tar
govuk-mini-environment-admin-babfdfcb17908f61f931b8f44b97622948be602a.tar.gz
Change the AWS backend instance type to a t2.large
Which is an increase in resources from the t2.medium. The 8GB of RAM (an increase from 4GB), will come in useful when working with data snapshots.
Diffstat (limited to 'terraform')
-rw-r--r--terraform/aws/backend/main.tf2
1 files changed, 1 insertions, 1 deletions
diff --git a/terraform/aws/backend/main.tf b/terraform/aws/backend/main.tf
index 20b0bbe..57e9348 100644
--- a/terraform/aws/backend/main.tf
+++ b/terraform/aws/backend/main.tf
@@ -219,7 +219,7 @@ resource "aws_security_group" "efs_mount_target" {
resource "aws_spot_instance_request" "main" {
ami = "ami-8fd760f6"
- instance_type = "t2.medium"
+ instance_type = "t2.large"
key_name = "${aws_key_pair.deployer.key_name}"
security_groups = [
"${aws_security_group.guix_daemon.name}",