Skip to content

Commit 8ac9e84

Browse files
rochaconmax-rocket-internet
authored andcommitted
add t3 instance type settings (#98)
1 parent f744ced commit 8ac9e84

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ project adheres to [Semantic Versioning](http://semver.org/).
1111

1212
- add spot_price option to aws_launch_configuration
1313
- add enable_monitoring option to aws_launch_configuration
14+
- add t3 instance class settings
1415

1516
### Changed
1617

local.tf

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,11 @@ locals {
6464
t2.large = 35
6565
t2.xlarge = 44
6666
t2.2xlarge = 44
67+
t3.small = 8
68+
t3.medium = 17
69+
t3.large = 35
70+
t3.xlarge = 44
71+
t3.2xlarge = 44
6772
x1.16xlarge = 234
6873
x1.32xlarge = 234
6974
}
@@ -178,6 +183,11 @@ locals {
178183
"t2.nano" = false
179184
"t2.small" = false
180185
"t2.xlarge" = false
186+
"t3.small" = false
187+
"t3.medium" = false
188+
"t3.large" = false
189+
"t3.xlarge" = false
190+
"t3.2xlarge" = false
181191
"x1.16xlarge" = true
182192
"x1.32xlarge" = true
183193
"x1e.16xlarge" = true

0 commit comments

Comments
 (0)