Skip to content

Commit

Permalink
Merge pull request #858 from wking/back-to-t3.medium
Browse files Browse the repository at this point in the history
Revert "data/aws: Switch to m4.large"
  • Loading branch information
openshift-merge-robot authored Dec 11, 2018
2 parents c2975a6 + c81f8f4 commit 6adb78a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion data/data/aws/bootstrap/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ variable "ignition" {

variable "instance_type" {
type = "string"
default = "m4.large"
default = "t3.medium"
description = "The EC2 instance type for the bootstrap node."
}

Expand Down
4 changes: 2 additions & 2 deletions data/data/aws/variables-aws.tf
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ EOF

variable "aws_master_ec2_type" {
type = "string"
description = "Instance size for the master node(s). Example: `m4.large`."
description = "Instance size for the master node(s). Example: `t3.medium`."

# FIXME: get this wired up to the machine default
default = "m4.large"
default = "t3.medium"
}

variable "aws_ec2_ami_override" {
Expand Down
2 changes: 1 addition & 1 deletion pkg/asset/machines/worker.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import (

func defaultAWSMachinePoolPlatform() awstypes.MachinePool {
return awstypes.MachinePool{
InstanceType: "m4.large",
InstanceType: "t3.medium",
}
}

Expand Down

0 comments on commit 6adb78a

Please sign in to comment.