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

@@ -139,14 +139,14 @@ module "eks" {
worker_groups = [ worker_groups = [
{ {
name = "worker-group-1" name = "worker-group-1"
instance_type = "t2.small" instance_type = "t3.small"
additional_userdata = "echo foo bar" additional_userdata = "echo foo bar"
asg_desired_capacity = 2 asg_desired_capacity = 2
additional_security_group_ids = [aws_security_group.worker_group_mgmt_one.id] additional_security_group_ids = [aws_security_group.worker_group_mgmt_one.id]
}, },
{ {
name = "worker-group-2" name = "worker-group-2"
instance_type = "t2.medium" instance_type = "t3.medium"
additional_userdata = "echo foo bar" additional_userdata = "echo foo bar"
additional_security_group_ids = [aws_security_group.worker_group_mgmt_two.id] additional_security_group_ids = [aws_security_group.worker_group_mgmt_two.id]
asg_desired_capacity = 1 asg_desired_capacity = 1

View File

@@ -65,7 +65,7 @@ module "eks" {
worker_groups = [ worker_groups = [
{ {
name = "worker-group-1" name = "worker-group-1"
instance_type = "t2.medium" instance_type = "t3.medium"
asg_desired_capacity = 1 asg_desired_capacity = 1
tags = [ tags = [
{ {

View File

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

View File

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

View File

@@ -103,7 +103,7 @@ module "eks" {
worker_groups = [ worker_groups = [
{ {
name = "worker-group-1" name = "worker-group-1"
instance_type = "t2.small" instance_type = "t3.small"
additional_userdata = "echo foo bar" additional_userdata = "echo foo bar"
asg_desired_capacity = 2 asg_desired_capacity = 2
}, },