diff --git a/data/data/aws/bootstrap/variables.tf b/data/data/aws/bootstrap/variables.tf index 11b23f116b5..7b394643bc7 100644 --- a/data/data/aws/bootstrap/variables.tf +++ b/data/data/aws/bootstrap/variables.tf @@ -26,7 +26,7 @@ variable "ignition" { variable "instance_type" { type = "string" - default = "t3.medium" + default = "m4.large" description = "The EC2 instance type for the bootstrap node." } diff --git a/data/data/aws/variables-aws.tf b/data/data/aws/variables-aws.tf index bd5e11a7772..df672aeaff4 100644 --- a/data/data/aws/variables-aws.tf +++ b/data/data/aws/variables-aws.tf @@ -9,10 +9,10 @@ EOF variable "aws_master_ec2_type" { type = "string" - description = "Instance size for the master node(s). Example: `t3.medium`." + description = "Instance size for the master node(s). Example: `m4.large`." # FIXME: get this wired up to the machine default - default = "t3.medium" + default = "m4.large" } variable "aws_ec2_ami_override" { diff --git a/pkg/asset/machines/worker.go b/pkg/asset/machines/worker.go index 719f1db5d9d..1675cfb073a 100644 --- a/pkg/asset/machines/worker.go +++ b/pkg/asset/machines/worker.go @@ -27,7 +27,7 @@ import ( func defaultAWSMachinePoolPlatform() awstypes.MachinePool { return awstypes.MachinePool{ - InstanceType: "t3.medium", + InstanceType: "m4.large", } }