diff --git a/aws/main.tf b/aws/main.tf index 544ff55..d5ba9c7 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 = "m5.xlarge" # <<<<<<<<<< Try changing this to m5.xlarge to compare the costs tags = { Environment = "production" @@ -17,6 +17,7 @@ resource "aws_instance" "my_web_app" { } root_block_device { + volume_type="gp3" volume_size = 1000 # <<<<<<<<<< Try adding volume_type="gp3" to compare costs } }