docs: Change instance type from t2 to t3 in examples (#1169)

This commit is contained in:
oscr
2021-01-28 23:26:35 +01:00
committed by GitHub
parent 8912ae9a8b
commit 357e647ed5
5 changed files with 7 additions and 7 deletions

View File

@@ -72,13 +72,13 @@ module "eks" {
worker_groups_launch_template = [
{
name = "worker-group-1"
instance_type = "t2.small"
instance_type = "t3.small"
asg_desired_capacity = 2
public_ip = true
},
{
name = "worker-group-2"
instance_type = "t2.medium"
instance_type = "t3.medium"
asg_desired_capacity = 1
public_ip = true
},