mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-01-19 01:57:35 +01:00
docs: Change instance type from t2 to t3 in examples (#1169)
This commit is contained in:
@@ -139,14 +139,14 @@ module "eks" {
|
||||
worker_groups = [
|
||||
{
|
||||
name = "worker-group-1"
|
||||
instance_type = "t2.small"
|
||||
instance_type = "t3.small"
|
||||
additional_userdata = "echo foo bar"
|
||||
asg_desired_capacity = 2
|
||||
additional_security_group_ids = [aws_security_group.worker_group_mgmt_one.id]
|
||||
},
|
||||
{
|
||||
name = "worker-group-2"
|
||||
instance_type = "t2.medium"
|
||||
instance_type = "t3.medium"
|
||||
additional_userdata = "echo foo bar"
|
||||
additional_security_group_ids = [aws_security_group.worker_group_mgmt_two.id]
|
||||
asg_desired_capacity = 1
|
||||
|
||||
@@ -65,7 +65,7 @@ module "eks" {
|
||||
worker_groups = [
|
||||
{
|
||||
name = "worker-group-1"
|
||||
instance_type = "t2.medium"
|
||||
instance_type = "t3.medium"
|
||||
asg_desired_capacity = 1
|
||||
tags = [
|
||||
{
|
||||
|
||||
@@ -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
|
||||
},
|
||||
|
||||
@@ -122,7 +122,7 @@ 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
|
||||
# }
|
||||
|
||||
@@ -103,7 +103,7 @@ module "eks" {
|
||||
worker_groups = [
|
||||
{
|
||||
name = "worker-group-1"
|
||||
instance_type = "t2.small"
|
||||
instance_type = "t3.small"
|
||||
additional_userdata = "echo foo bar"
|
||||
asg_desired_capacity = 2
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user