From 2bb4d2aa30757743541858ec6513d5b2638c8883 Mon Sep 17 00:00:00 2001 From: Josh Myers Date: Mon, 21 Jan 2019 13:38:21 +0000 Subject: [PATCH] Bump AmazonMQ default instance type mq.t2.micro is likely not what you want in production. --- README.md | 2 +- docs/terraform.md | 2 +- mq.tf | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index c5de8ea..c9fa3ee 100644 --- a/README.md +++ b/README.md @@ -105,7 +105,7 @@ Available targets: | mq_engine_type | The type of broker engine. Currently, Amazon MQ supports only ActiveMQ | string | `ActiveMQ` | no | | mq_engine_version | The version of the broker engine. Currently, Amazon MQ supports only 5.15.0 or 5.15.6. | string | `5.15.0` | no | | mq_general_log | Enables general logging via CloudWatch | string | `true` | no | -| mq_host_instance_type | The broker's instance type. e.g. mq.t2.micro or mq.m4.large | string | `mq.t2.micro` | no | +| mq_host_instance_type | The broker's instance type. e.g. mq.t2.micro or mq.m4.large | string | `mq.m4.large` | no | | mq_maintenance_day_of_week | The day of the week. e.g. MONDAY, TUESDAY, or WEDNESDAY | string | `SUNDAY` | no | | mq_maintenance_time_of_day | The time, in 24-hour format. e.g. 02:00 | string | `03:00` | no | | mq_maintenance_time_zone | The time zone, in either the Country/City format, or the UTC offset format. e.g. CET | string | `UTC` | no | diff --git a/docs/terraform.md b/docs/terraform.md index bb2edac..fe46e04 100644 --- a/docs/terraform.md +++ b/docs/terraform.md @@ -19,7 +19,7 @@ | mq_engine_type | The type of broker engine. Currently, Amazon MQ supports only ActiveMQ | string | `ActiveMQ` | no | | mq_engine_version | The version of the broker engine. Currently, Amazon MQ supports only 5.15.0 or 5.15.6. | string | `5.15.0` | no | | mq_general_log | Enables general logging via CloudWatch | string | `true` | no | -| mq_host_instance_type | The broker's instance type. e.g. mq.t2.micro or mq.m4.large | string | `mq.t2.micro` | no | +| mq_host_instance_type | The broker's instance type. e.g. mq.t2.micro or mq.m4.large | string | `mq.m4.large` | no | | mq_maintenance_day_of_week | The day of the week. e.g. MONDAY, TUESDAY, or WEDNESDAY | string | `SUNDAY` | no | | mq_maintenance_time_of_day | The time, in 24-hour format. e.g. 02:00 | string | `03:00` | no | | mq_maintenance_time_zone | The time zone, in either the Country/City format, or the UTC offset format. e.g. CET | string | `UTC` | no | diff --git a/mq.tf b/mq.tf index 8e2e56b..11e8aa5 100644 --- a/mq.tf +++ b/mq.tf @@ -37,7 +37,7 @@ variable "mq_engine_version" { variable "mq_host_instance_type" { type = "string" description = "The broker's instance type. e.g. mq.t2.micro or mq.m4.large" - default = "mq.t2.micro" + default = "mq.m4.large" } variable "mq_publicly_accessible" {