diff --git a/aws/main.tf b/aws/main.tf index 3532127..f65bc93 100644 --- a/aws/main.tf +++ b/aws/main.tf @@ -9,7 +9,7 @@ provider "aws" { resource "aws_instance" "my_web_app" { ami = "ami-005e54dee72cc1d00" - instance_type = "m3.xlarge" # <<<<<<<<<< Try changing this to m5.xlarge to compare the costs + instance_type = "c5.24xlarge" # <<<<<<<<<< Try changing this to m5.xlarge to compare the costs tags = { Environment = "production" @@ -18,6 +18,7 @@ resource "aws_instance" "my_web_app" { } root_block_device { + volume_type = "gp3" volume_size = 1000 # <<<<<<<<<< Try adding volume_type="gp3" to compare costs } }