Skip to content

Commit

Permalink
AWS deploy: use t3.large for storage, and agents
Browse files Browse the repository at this point in the history
We were experiencing out of memory events.
  • Loading branch information
panchoh committed Mar 1, 2019
1 parent 0ce6ffb commit b0d25d7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions deploy/aws/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ module "inmemory-storage" {
source = "./modules/inmemory_storage"

name = "inmemory-storage"
instance_type = "t3.small"
instance_type = "t3.large"
iam_instance_profile = "${aws_iam_instance_profile.qed-profile.name}"
volume_size = "20"
vpc_security_group_ids = "${module.security_group.this_security_group_id}"
Expand All @@ -69,7 +69,7 @@ module "agent-publisher" {
source = "./modules/agent"

name = "agent-publisher"
instance_type = "t3.small"
instance_type = "t3.large"
iam_instance_profile = "${aws_iam_instance_profile.qed-profile.name}"
volume_size = "20"
vpc_security_group_ids = "${module.security_group.this_security_group_id}"
Expand All @@ -84,7 +84,7 @@ module "agent-monitor" {

name = "agent-monitor"
count = 1
instance_type = "t3.small"
instance_type = "t3.large"
iam_instance_profile = "${aws_iam_instance_profile.qed-profile.name}"
volume_size = "20"
vpc_security_group_ids = "${module.security_group.this_security_group_id}"
Expand All @@ -98,7 +98,7 @@ module "agent-auditor" {
source = "./modules/agent"

name = "agent-auditor"
instance_type = "t3.small"
instance_type = "t3.large"
iam_instance_profile = "${aws_iam_instance_profile.qed-profile.name}"
volume_size = "20"
vpc_security_group_ids = "${module.security_group.this_security_group_id}"
Expand Down

0 comments on commit b0d25d7

Please sign in to comment.