Skip to content

Commit 52311c0

Browse files
Update main.tf
1 parent 96c3140 commit 52311c0

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

aws/main.tf

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,15 @@ provider "aws" {
99
resource "aws_instance" "my_web_app" {
1010
ami = "ami-005e54dee72cc1d00"
1111

12-
instance_type = "m3.xlarge" # <<<<<<<<<< Try changing this to m5.xlarge to compare the costs
12+
instance_type = "m5.xlarge" # <<<<<<<<<< Try changing this to m5.xlarge to compare the costs
1313

1414
tags = {
1515
Environment = "production"
1616
Service = "web-app"
1717
}
1818

1919
root_block_device {
20+
volume_type="gp3"
2021
volume_size = 1000 # <<<<<<<<<< Try adding volume_type="gp3" to compare costs
2122
}
2223
}

0 commit comments

Comments
 (0)