mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-04-23 00:58:26 +02:00
add t3 instance type settings (#98)
This commit is contained in:
committed by
Max Williams
parent
f744cedf7d
commit
8ac9e845c1
@@ -11,6 +11,7 @@ project adheres to [Semantic Versioning](http://semver.org/).
|
|||||||
|
|
||||||
- add spot_price option to aws_launch_configuration
|
- add spot_price option to aws_launch_configuration
|
||||||
- add enable_monitoring option to aws_launch_configuration
|
- add enable_monitoring option to aws_launch_configuration
|
||||||
|
- add t3 instance class settings
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
||||||
|
|||||||
10
local.tf
10
local.tf
@@ -64,6 +64,11 @@ locals {
|
|||||||
t2.large = 35
|
t2.large = 35
|
||||||
t2.xlarge = 44
|
t2.xlarge = 44
|
||||||
t2.2xlarge = 44
|
t2.2xlarge = 44
|
||||||
|
t3.small = 8
|
||||||
|
t3.medium = 17
|
||||||
|
t3.large = 35
|
||||||
|
t3.xlarge = 44
|
||||||
|
t3.2xlarge = 44
|
||||||
x1.16xlarge = 234
|
x1.16xlarge = 234
|
||||||
x1.32xlarge = 234
|
x1.32xlarge = 234
|
||||||
}
|
}
|
||||||
@@ -178,6 +183,11 @@ locals {
|
|||||||
"t2.nano" = false
|
"t2.nano" = false
|
||||||
"t2.small" = false
|
"t2.small" = false
|
||||||
"t2.xlarge" = false
|
"t2.xlarge" = false
|
||||||
|
"t3.small" = false
|
||||||
|
"t3.medium" = false
|
||||||
|
"t3.large" = false
|
||||||
|
"t3.xlarge" = false
|
||||||
|
"t3.2xlarge" = false
|
||||||
"x1.16xlarge" = true
|
"x1.16xlarge" = true
|
||||||
"x1.32xlarge" = true
|
"x1.32xlarge" = true
|
||||||
"x1e.16xlarge" = true
|
"x1e.16xlarge" = true
|
||||||
|
|||||||
Reference in New Issue
Block a user