Skip to content

Commit

Permalink
docs: Change instance type from t2 to t3 in examples (terraform-a…
Browse files Browse the repository at this point in the history
  • Loading branch information
oscr authored and ArchiFleKs committed Apr 16, 2021
1 parent 8581a90 commit 5d06c2d
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions examples/basic/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion examples/irsa/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
{
Expand Down
4 changes: 2 additions & 2 deletions examples/launch_templates/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
},
Expand Down
2 changes: 1 addition & 1 deletion examples/managed_node_groups/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
# }
Expand Down
2 changes: 1 addition & 1 deletion examples/secrets_encryption/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
},
Expand Down

0 comments on commit 5d06c2d

Please sign in to comment.