Terraform

Terraform

Made by DeepSource

Use of previous generation AWS instance type TF-L0032

Performance
Major

Current generation instance types have better performance and lower cost than previous generations. Select a current generation instance type according to the upgrade paths.

Example:

resource "aws_instance" "web" {
  ami                  = "ami-b73b63a0"
  instance_type        = "t1.micro" # previous instance type!
  iam_instance_profile = "app-service"

  tags {
    Name = "HelloWorld"
  }
}