From 8ac9e845c17f594f793b6cc6f47c46e4e177c598 Mon Sep 17 00:00:00 2001 From: Rodrigo Chacon Date: Thu, 23 Aug 2018 05:00:56 -0300 Subject: [PATCH] add t3 instance type settings (#98) --- CHANGELOG.md | 1 + local.tf | 10 ++++++++++ 2 files changed, 11 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5135b73..2f78884 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,7 @@ project adheres to [Semantic Versioning](http://semver.org/). - add spot_price option to aws_launch_configuration - add enable_monitoring option to aws_launch_configuration +- add t3 instance class settings ### Changed diff --git a/local.tf b/local.tf index be94e47..c4829ba 100644 --- a/local.tf +++ b/local.tf @@ -64,6 +64,11 @@ locals { t2.large = 35 t2.xlarge = 44 t2.2xlarge = 44 + t3.small = 8 + t3.medium = 17 + t3.large = 35 + t3.xlarge = 44 + t3.2xlarge = 44 x1.16xlarge = 234 x1.32xlarge = 234 } @@ -178,6 +183,11 @@ locals { "t2.nano" = false "t2.small" = false "t2.xlarge" = false + "t3.small" = false + "t3.medium" = false + "t3.large" = false + "t3.xlarge" = false + "t3.2xlarge" = false "x1.16xlarge" = true "x1.32xlarge" = true "x1e.16xlarge" = true