We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 96c3140 commit 52311c0Copy full SHA for 52311c0
1 file changed
aws/main.tf
@@ -9,14 +9,15 @@ provider "aws" {
9
resource "aws_instance" "my_web_app" {
10
ami = "ami-005e54dee72cc1d00"
11
12
- 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
13
14
tags = {
15
Environment = "production"
16
Service = "web-app"
17
}
18
19
root_block_device {
20
+ volume_type="gp3"
21
volume_size = 1000 # <<<<<<<<<< Try adding volume_type="gp3" to compare costs
22
23
0 commit comments