Convert default instance size to t3 for AWS
@mdgreenwald mentioned this during nov 12 2020 engineering office hours, setting the default instance type to use the T3 family.
We also want to make sure the CPU Credits option is set to mirror the default T2 instance type behavior (it's ok to run out of credits), so the bastion cost is predictable.
Based on this, I think we'd want to use standard.
resource "aws_instance" "woo" {
ami = "ami-12345abcdef"
instance_type = "t3.micro"
credit_specification {
cpu_credits = "standard"
}
}
This also may require switching to launch templates.
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.