Skip to content

Commit

Permalink
AWS deploy: change instance types from t3.* to m5.*
Browse files Browse the repository at this point in the history
Burstable instances (t3.*) are not well suited for long testing.
Co-authored-by: iknite <[email protected]>
  • Loading branch information
panchoh committed Mar 5, 2019
1 parent 651c604 commit 48bb811
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions deploy/aws/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ module "qed" {

name = "qed"
count = 3
instance_type = "t3.2xlarge"
instance_type = "m5.2xlarge"
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 @@ -56,7 +56,7 @@ module "inmemory-storage" {
source = "./modules/inmemory_storage"

name = "inmemory-storage"
instance_type = "t3.large"
instance_type = "m5.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.large"
instance_type = "m5.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.large"
instance_type = "m5.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.large"
instance_type = "m5.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 @@ -111,7 +111,7 @@ module "agent-auditor" {
module "prometheus" {
source = "./modules/prometheus"

instance_type = "t3.medium"
instance_type = "m5.large"
iam_instance_profile = "${aws_iam_instance_profile.qed-profile.name}"
volume_size = "20"
vpc_security_group_ids = "${module.prometheus_security_group.this_security_group_id}"
Expand All @@ -123,7 +123,7 @@ module "prometheus" {
module "riot" {
source = "./modules/riot"

instance_type = "t3.medium"
instance_type = "m5.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 48bb811

Please sign in to comment.